Statistics
| Revision:

root / trunk / bootloader / packet.h @ 189

History | View | Annotate | Download (273 Bytes)

1
#ifndef _PACKET_H_
2
#define _PACKET_H_
3
4
#include "packet.h"
5
#include "rs485_poll.h"
6
#include "bootloader.h"
7
8
/** @brief Max time to wait until we exit the packet handler */
9
#define MAX_TIMEOUT 60000
10
11
char parse_packet(uint8_t *mbuf);
12
void send_packet(uint8_t cmd);
13
14
15
#endif