working on PIC port of MS/TP.

This commit is contained in:
skarg
2006-08-11 20:55:48 +00:00
parent e683d06998
commit 185d02a9ff
2 changed files with 35 additions and 29 deletions
+5 -3
View File
@@ -46,9 +46,11 @@
typedef struct dlmstp_packet
{
BACNET_ADDRESS address;
unsigned pdu_len;
uint8_t pdu[MAX_MPDU];
bool ready; /* true if ready to be sent or received */
bool data_expecting_reply;
BACNET_ADDRESS address; /* src or dest address*/
unsigned pdu_len; /* packet length */
uint8_t pdu[MAX_MPDU]; /* packet */
} DLMSTP_PACKET;
#ifdef __cplusplus