Feature/makefile add apps library (#218)
* add BACnet stack library at apps/lib * convert apps to use apps/lib for smaller binary * fix -DBACDL_ALL=1 build * fix piface build * datalink MAX_MPDU and MAX_HEADER cleanup * add bip6 to git workflow * fix system library dependency of BACnet library Co-authored-by: Steve Karg <skarg@users.sourceforge.net>
This commit is contained in:
@@ -165,7 +165,7 @@ static uint8_t Nmax_master = 127;
|
||||
struct mstp_tx_packet {
|
||||
uint16_t length;
|
||||
uint16_t index;
|
||||
uint8_t buffer[MAX_MPDU];
|
||||
uint8_t buffer[DLMSTP_MPDU_MAX];
|
||||
};
|
||||
/* count must be a power of 2 for ringbuf library */
|
||||
#ifndef MSTP_TRANSMIT_PACKET_COUNT
|
||||
@@ -179,7 +179,7 @@ struct mstp_pdu_packet {
|
||||
bool data_expecting_reply;
|
||||
uint8_t destination_mac;
|
||||
uint16_t length;
|
||||
uint8_t buffer[MAX_MPDU];
|
||||
uint8_t buffer[DLMSTP_MPDU_MAX];
|
||||
};
|
||||
/* count must be a power of 2 for ringbuf library */
|
||||
#ifndef MSTP_PDU_PACKET_COUNT
|
||||
|
||||
Reference in New Issue
Block a user