Fixed a few more bugs in MS/TP, and leaned it out some more.
This commit is contained in:
@@ -58,7 +58,6 @@ extern "C" {
|
|||||||
|
|
||||||
void dlmstp_init(void);
|
void dlmstp_init(void);
|
||||||
void dlmstp_cleanup(void);
|
void dlmstp_cleanup(void);
|
||||||
void dlmstp_task(void);
|
|
||||||
void dlmstp_millisecond_timer(void);
|
void dlmstp_millisecond_timer(void);
|
||||||
|
|
||||||
/* returns number of bytes sent on success, negative on failure */
|
/* returns number of bytes sent on success, negative on failure */
|
||||||
|
|||||||
+98
-74
@@ -57,7 +57,7 @@
|
|||||||
/* debug print statements */
|
/* debug print statements */
|
||||||
#define PRINT_ENABLED_RECEIVE 0
|
#define PRINT_ENABLED_RECEIVE 0
|
||||||
#define PRINT_ENABLED_RECEIVE_DATA 0
|
#define PRINT_ENABLED_RECEIVE_DATA 0
|
||||||
#define PRINT_ENABLED_MASTER 1
|
#define PRINT_ENABLED_MASTER 0
|
||||||
|
|
||||||
/* MS/TP Frame Format */
|
/* MS/TP Frame Format */
|
||||||
/* All frames are of the following format: */
|
/* All frames are of the following format: */
|
||||||
@@ -90,7 +90,7 @@ const uint8_t Nmin_octets = 4;
|
|||||||
/* not to exceed 100 milliseconds.) */
|
/* not to exceed 100 milliseconds.) */
|
||||||
/* At 9600 baud, 60 bit times would be about 6.25 milliseconds */
|
/* At 9600 baud, 60 bit times would be about 6.25 milliseconds */
|
||||||
/* const uint16_t Tframe_abort = 1 + ((1000 * 60) / 9600); */
|
/* const uint16_t Tframe_abort = 1 + ((1000 * 60) / 9600); */
|
||||||
const uint16_t Tframe_abort = 100;
|
const uint16_t Tframe_abort = 30;
|
||||||
|
|
||||||
/* The maximum idle time a sending node may allow to elapse between octets */
|
/* The maximum idle time a sending node may allow to elapse between octets */
|
||||||
/* of a frame the node is transmitting: 20 bit times. */
|
/* of a frame the node is transmitting: 20 bit times. */
|
||||||
@@ -108,7 +108,7 @@ const unsigned Tpostdrive = 15;
|
|||||||
/* The maximum time a node may wait after reception of a frame that expects */
|
/* The maximum time a node may wait after reception of a frame that expects */
|
||||||
/* a reply before sending the first octet of a reply or Reply Postponed */
|
/* a reply before sending the first octet of a reply or Reply Postponed */
|
||||||
/* frame: 250 milliseconds. */
|
/* frame: 250 milliseconds. */
|
||||||
const uint16_t Treply_delay = 225;
|
const uint16_t Treply_delay = 10;
|
||||||
|
|
||||||
/* The minimum time without a DataAvailable or ReceiveError event */
|
/* The minimum time without a DataAvailable or ReceiveError event */
|
||||||
/* that a node must wait for a station to begin replying to a */
|
/* that a node must wait for a station to begin replying to a */
|
||||||
@@ -134,7 +134,7 @@ const uint16_t Tusage_delay = 15;
|
|||||||
/* node must wait for a remote node to begin using a token or replying to */
|
/* node must wait for a remote node to begin using a token or replying to */
|
||||||
/* a Poll For Master frame: 20 milliseconds. (Implementations may use */
|
/* a Poll For Master frame: 20 milliseconds. (Implementations may use */
|
||||||
/* larger values for this timeout, not to exceed 100 milliseconds.) */
|
/* larger values for this timeout, not to exceed 100 milliseconds.) */
|
||||||
const uint16_t Tusage_timeout = 50;
|
const uint16_t Tusage_timeout = 30;
|
||||||
|
|
||||||
/* we need to be able to increment without rolling over */
|
/* we need to be able to increment without rolling over */
|
||||||
#define INCREMENT_AND_LIMIT_UINT8(x) {if (x < 0xFF) x++;}
|
#define INCREMENT_AND_LIMIT_UINT8(x) {if (x < 0xFF) x++;}
|
||||||
@@ -218,6 +218,7 @@ void MSTP_Create_And_Send_Frame(volatile struct mstp_port_struct_t *mstp_port,
|
|||||||
data_len); /* number of bytes of data (up to 501) */
|
data_len); /* number of bytes of data (up to 501) */
|
||||||
|
|
||||||
RS485_Send_Frame(mstp_port, &buffer[0], len);
|
RS485_Send_Frame(mstp_port, &buffer[0], len);
|
||||||
|
/* FIXME: be sure to reset SilenceTimer after each octet is sent! */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Millisecond Timer - called every millisecond */
|
/* Millisecond Timer - called every millisecond */
|
||||||
@@ -259,28 +260,17 @@ char *mstp_receive_state_text(int state)
|
|||||||
|
|
||||||
void MSTP_Receive_Frame_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
void MSTP_Receive_Frame_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
||||||
{
|
{
|
||||||
#if PRINT_ENABLED_MASTER
|
#if PRINT_ENABLED_RECEIVE_DATA
|
||||||
static MSTP_RECEIVE_STATE receive_state = MSTP_RECEIVE_STATE_IDLE;
|
static MSTP_RECEIVE_STATE receive_state = MSTP_RECEIVE_STATE_IDLE;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if PRINT_ENABLED_RECEIVE
|
#if PRINT_ENABLED_RECEIVE
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"MSTP Rx: State=%s Data=%02X hCRC=%02X Index=%u EC=%u DateLen=%u Silence=%u\r\n",
|
"MSTP Rx: State=%s Data=%02X hCRC=%02X Index=%u EC=%u DateLen=%u Silence=%u\n",
|
||||||
mstp_receive_state_text(mstp_port->receive_state),
|
mstp_receive_state_text(mstp_port->receive_state),
|
||||||
mstp_port->DataRegister, mstp_port->HeaderCRC, mstp_port->Index,
|
mstp_port->DataRegister, mstp_port->HeaderCRC, mstp_port->Index,
|
||||||
mstp_port->EventCount, mstp_port->DataLength,
|
mstp_port->EventCount, mstp_port->DataLength,
|
||||||
mstp_port->SilenceTimer);
|
mstp_port->SilenceTimer);
|
||||||
#endif
|
#endif
|
||||||
#if PRINT_ENABLED_RECEIVE_DATA
|
|
||||||
if (mstp_port->DataAvailable == true) {
|
|
||||||
if ((mstp_port->receive_state == MSTP_RECEIVE_STATE_IDLE) &&
|
|
||||||
(receive_state != MSTP_RECEIVE_STATE_IDLE))
|
|
||||||
fprintf(stderr, "MSTP Rx: ");
|
|
||||||
fprintf(stderr, "%02X ", mstp_port->DataRegister);
|
|
||||||
}
|
|
||||||
receive_state = mstp_port->receive_state;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
switch (mstp_port->receive_state) {
|
switch (mstp_port->receive_state) {
|
||||||
/* In the IDLE state, the node waits for the beginning of a frame. */
|
/* In the IDLE state, the node waits for the beginning of a frame. */
|
||||||
case MSTP_RECEIVE_STATE_IDLE:
|
case MSTP_RECEIVE_STATE_IDLE:
|
||||||
@@ -291,24 +281,28 @@ void MSTP_Receive_Frame_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
INCREMENT_AND_LIMIT_UINT8(mstp_port->EventCount);
|
INCREMENT_AND_LIMIT_UINT8(mstp_port->EventCount);
|
||||||
/* wait for the start of a frame. */
|
/* wait for the start of a frame. */
|
||||||
mstp_port->receive_state = MSTP_RECEIVE_STATE_IDLE;
|
mstp_port->receive_state = MSTP_RECEIVE_STATE_IDLE;
|
||||||
} else {
|
} else if (mstp_port->DataAvailable == true) {
|
||||||
if (mstp_port->DataAvailable == true) {
|
#if PRINT_ENABLED_RECEIVE_DATA
|
||||||
/* Preamble1 */
|
fprintf(stderr, "MSTP Rx: %02X ", mstp_port->DataRegister);
|
||||||
if (mstp_port->DataRegister == 0x55) {
|
#endif
|
||||||
mstp_port->DataAvailable = false;
|
/* Preamble1 */
|
||||||
mstp_port->SilenceTimer = 0;
|
if (mstp_port->DataRegister == 0x55) {
|
||||||
INCREMENT_AND_LIMIT_UINT8(mstp_port->EventCount);
|
mstp_port->DataAvailable = false;
|
||||||
/* receive the remainder of the frame. */
|
mstp_port->SilenceTimer = 0;
|
||||||
mstp_port->receive_state = MSTP_RECEIVE_STATE_PREAMBLE;
|
INCREMENT_AND_LIMIT_UINT8(mstp_port->EventCount);
|
||||||
}
|
/* receive the remainder of the frame. */
|
||||||
/* EatAnOctet */
|
mstp_port->receive_state = MSTP_RECEIVE_STATE_PREAMBLE;
|
||||||
else {
|
}
|
||||||
mstp_port->DataAvailable = false;
|
/* EatAnOctet */
|
||||||
mstp_port->SilenceTimer = 0;
|
else {
|
||||||
INCREMENT_AND_LIMIT_UINT8(mstp_port->EventCount);
|
#if PRINT_ENABLED_RECEIVE_DATA
|
||||||
/* wait for the start of a frame. */
|
fprintf(stderr, "\n");
|
||||||
mstp_port->receive_state = MSTP_RECEIVE_STATE_IDLE;
|
#endif
|
||||||
}
|
mstp_port->DataAvailable = false;
|
||||||
|
mstp_port->SilenceTimer = 0;
|
||||||
|
INCREMENT_AND_LIMIT_UINT8(mstp_port->EventCount);
|
||||||
|
/* wait for the start of a frame. */
|
||||||
|
mstp_port->receive_state = MSTP_RECEIVE_STATE_IDLE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@@ -327,34 +321,35 @@ void MSTP_Receive_Frame_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
INCREMENT_AND_LIMIT_UINT8(mstp_port->EventCount);
|
INCREMENT_AND_LIMIT_UINT8(mstp_port->EventCount);
|
||||||
/* wait for the start of a frame. */
|
/* wait for the start of a frame. */
|
||||||
mstp_port->receive_state = MSTP_RECEIVE_STATE_IDLE;
|
mstp_port->receive_state = MSTP_RECEIVE_STATE_IDLE;
|
||||||
} else {
|
} else if (mstp_port->DataAvailable == true) {
|
||||||
if (mstp_port->DataAvailable == true) {
|
#if PRINT_ENABLED_RECEIVE_DATA
|
||||||
/* Preamble2 */
|
fprintf(stderr, "%02X ", mstp_port->DataRegister);
|
||||||
if (mstp_port->DataRegister == 0xFF) {
|
#endif
|
||||||
mstp_port->DataAvailable = false;
|
/* Preamble2 */
|
||||||
mstp_port->SilenceTimer = 0;
|
if (mstp_port->DataRegister == 0xFF) {
|
||||||
INCREMENT_AND_LIMIT_UINT8(mstp_port->EventCount);
|
mstp_port->DataAvailable = false;
|
||||||
mstp_port->Index = 0;
|
mstp_port->SilenceTimer = 0;
|
||||||
mstp_port->HeaderCRC = 0xFF;
|
INCREMENT_AND_LIMIT_UINT8(mstp_port->EventCount);
|
||||||
/* receive the remainder of the frame. */
|
mstp_port->Index = 0;
|
||||||
mstp_port->receive_state = MSTP_RECEIVE_STATE_HEADER;
|
mstp_port->HeaderCRC = 0xFF;
|
||||||
}
|
/* receive the remainder of the frame. */
|
||||||
/* ignore RepeatedPreamble1 */
|
mstp_port->receive_state = MSTP_RECEIVE_STATE_HEADER;
|
||||||
else if (mstp_port->DataRegister == 0x55) {
|
}
|
||||||
mstp_port->DataAvailable = false;
|
/* ignore RepeatedPreamble1 */
|
||||||
mstp_port->SilenceTimer = 0;
|
else if (mstp_port->DataRegister == 0x55) {
|
||||||
INCREMENT_AND_LIMIT_UINT8(mstp_port->EventCount);
|
mstp_port->DataAvailable = false;
|
||||||
/* wait for the second preamble octet. */
|
mstp_port->SilenceTimer = 0;
|
||||||
mstp_port->receive_state = MSTP_RECEIVE_STATE_PREAMBLE;
|
INCREMENT_AND_LIMIT_UINT8(mstp_port->EventCount);
|
||||||
}
|
/* wait for the second preamble octet. */
|
||||||
/* NotPreamble */
|
mstp_port->receive_state = MSTP_RECEIVE_STATE_PREAMBLE;
|
||||||
else {
|
}
|
||||||
mstp_port->DataAvailable = false;
|
/* NotPreamble */
|
||||||
mstp_port->SilenceTimer = 0;
|
else {
|
||||||
INCREMENT_AND_LIMIT_UINT8(mstp_port->EventCount);
|
mstp_port->DataAvailable = false;
|
||||||
/* wait for the start of a frame. */
|
mstp_port->SilenceTimer = 0;
|
||||||
mstp_port->receive_state = MSTP_RECEIVE_STATE_IDLE;
|
INCREMENT_AND_LIMIT_UINT8(mstp_port->EventCount);
|
||||||
}
|
/* wait for the start of a frame. */
|
||||||
|
mstp_port->receive_state = MSTP_RECEIVE_STATE_IDLE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@@ -377,6 +372,9 @@ void MSTP_Receive_Frame_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
/* wait for the start of a frame. */
|
/* wait for the start of a frame. */
|
||||||
mstp_port->receive_state = MSTP_RECEIVE_STATE_IDLE;
|
mstp_port->receive_state = MSTP_RECEIVE_STATE_IDLE;
|
||||||
} else if (mstp_port->DataAvailable == true) {
|
} else if (mstp_port->DataAvailable == true) {
|
||||||
|
#if PRINT_ENABLED_RECEIVE_DATA
|
||||||
|
fprintf(stderr, "%02X ", mstp_port->DataRegister);
|
||||||
|
#endif
|
||||||
/* FrameType */
|
/* FrameType */
|
||||||
if (mstp_port->Index == 0) {
|
if (mstp_port->Index == 0) {
|
||||||
mstp_port->SilenceTimer = 0;
|
mstp_port->SilenceTimer = 0;
|
||||||
@@ -521,6 +519,9 @@ void MSTP_Receive_Frame_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
/* wait for the start of the next frame. */
|
/* wait for the start of the next frame. */
|
||||||
mstp_port->receive_state = MSTP_RECEIVE_STATE_IDLE;
|
mstp_port->receive_state = MSTP_RECEIVE_STATE_IDLE;
|
||||||
} else if (mstp_port->DataAvailable == true) {
|
} else if (mstp_port->DataAvailable == true) {
|
||||||
|
#if PRINT_ENABLED_RECEIVE_DATA
|
||||||
|
fprintf(stderr, "%02X ", mstp_port->DataRegister);
|
||||||
|
#endif
|
||||||
/* DataOctet */
|
/* DataOctet */
|
||||||
if (mstp_port->Index < mstp_port->DataLength) {
|
if (mstp_port->Index < mstp_port->DataLength) {
|
||||||
mstp_port->DataCRC = CRC_Calc_Data(mstp_port->DataRegister,
|
mstp_port->DataCRC = CRC_Calc_Data(mstp_port->DataRegister,
|
||||||
@@ -561,8 +562,10 @@ void MSTP_Receive_Frame_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
#if PRINT_ENABLED_RECEIVE_DATA
|
#if PRINT_ENABLED_RECEIVE_DATA
|
||||||
if ((receive_state != MSTP_RECEIVE_STATE_IDLE) &&
|
if ((receive_state != MSTP_RECEIVE_STATE_IDLE) &&
|
||||||
(mstp_port->receive_state == MSTP_RECEIVE_STATE_IDLE)) {
|
(mstp_port->receive_state == MSTP_RECEIVE_STATE_IDLE)) {
|
||||||
fprintf(stderr, "\r\n");
|
fprintf(stderr, "\n");
|
||||||
|
fflush(stderr);
|
||||||
}
|
}
|
||||||
|
receive_state = mstp_port->receive_state;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return;
|
return;
|
||||||
@@ -650,7 +653,8 @@ char *mstp_frame_type_text(int type)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
/* returns true if we need to transition immediately */
|
||||||
|
bool MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
||||||
{
|
{
|
||||||
int mtu_len = 0;
|
int mtu_len = 0;
|
||||||
int frame_type = 0;
|
int frame_type = 0;
|
||||||
@@ -658,11 +662,12 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
uint8_t next_this_station = 0;
|
uint8_t next_this_station = 0;
|
||||||
uint8_t next_next_station = 0;
|
uint8_t next_next_station = 0;
|
||||||
uint16_t my_timeout = 10, ns_timeout = 0;
|
uint16_t my_timeout = 10, ns_timeout = 0;
|
||||||
|
/* transition immediately to the next state */
|
||||||
|
bool transition_now = false;
|
||||||
#if PRINT_ENABLED_MASTER
|
#if PRINT_ENABLED_MASTER
|
||||||
static MSTP_MASTER_STATE master_state = MSTP_MASTER_STATE_INITIALIZE;
|
static MSTP_MASTER_STATE master_state = MSTP_MASTER_STATE_INITIALIZE;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/* some calculations that several states need */
|
/* some calculations that several states need */
|
||||||
next_poll_station = (mstp_port->Poll_Station + 1) %
|
next_poll_station = (mstp_port->Poll_Station + 1) %
|
||||||
(mstp_port->Nmax_master + 1);
|
(mstp_port->Nmax_master + 1);
|
||||||
@@ -674,7 +679,7 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
if (mstp_port->master_state != master_state) {
|
if (mstp_port->master_state != master_state) {
|
||||||
master_state = mstp_port->master_state;
|
master_state = mstp_port->master_state;
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"MSTP: TS=%02X[%02X] NS=%02X[%02X] PS=%02X[%02X] EC=%u TC=%u ST=%u %s\r\n",
|
"MSTP: TS=%02X[%02X] NS=%02X[%02X] PS=%02X[%02X] EC=%u TC=%u ST=%u %s\n",
|
||||||
mstp_port->This_Station,
|
mstp_port->This_Station,
|
||||||
next_this_station,
|
next_this_station,
|
||||||
mstp_port->Next_Station,
|
mstp_port->Next_Station,
|
||||||
@@ -701,6 +706,7 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
mstp_port->ReceivedValidFrame = false;
|
mstp_port->ReceivedValidFrame = false;
|
||||||
mstp_port->ReceivedInvalidFrame = false;
|
mstp_port->ReceivedInvalidFrame = false;
|
||||||
mstp_port->master_state = MSTP_MASTER_STATE_IDLE;
|
mstp_port->master_state = MSTP_MASTER_STATE_IDLE;
|
||||||
|
transition_now = true;
|
||||||
break;
|
break;
|
||||||
/* In the IDLE state, the node waits for a frame. */
|
/* In the IDLE state, the node waits for a frame. */
|
||||||
case MSTP_MASTER_STATE_IDLE:
|
case MSTP_MASTER_STATE_IDLE:
|
||||||
@@ -709,6 +715,7 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
/* assume that the token has been lost */
|
/* assume that the token has been lost */
|
||||||
mstp_port->EventCount = 0; /* Addendum 135-2004d-8 */
|
mstp_port->EventCount = 0; /* Addendum 135-2004d-8 */
|
||||||
mstp_port->master_state = MSTP_MASTER_STATE_NO_TOKEN;
|
mstp_port->master_state = MSTP_MASTER_STATE_NO_TOKEN;
|
||||||
|
transition_now = true;
|
||||||
}
|
}
|
||||||
/* ReceivedInvalidFrame */
|
/* ReceivedInvalidFrame */
|
||||||
else if (mstp_port->ReceivedInvalidFrame == true) {
|
else if (mstp_port->ReceivedInvalidFrame == true) {
|
||||||
@@ -718,7 +725,7 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
} else if (mstp_port->ReceivedValidFrame == true) {
|
} else if (mstp_port->ReceivedValidFrame == true) {
|
||||||
#if PRINT_ENABLED_MASTER
|
#if PRINT_ENABLED_MASTER
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"MSTP: ReceivedValidFrame Src=%02X Dest=%02X DataLen=%u FC=%u ST=%u Type=%s\r\n",
|
"MSTP: ReceivedValidFrame Src=%02X Dest=%02X DataLen=%u FC=%u ST=%u Type=%s\n",
|
||||||
mstp_port->SourceAddress,
|
mstp_port->SourceAddress,
|
||||||
mstp_port->DestinationAddress,
|
mstp_port->DestinationAddress,
|
||||||
mstp_port->DataLength,
|
mstp_port->DataLength,
|
||||||
@@ -742,6 +749,7 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
mstp_port->FrameCount = 0;
|
mstp_port->FrameCount = 0;
|
||||||
mstp_port->SoleMaster = false;
|
mstp_port->SoleMaster = false;
|
||||||
mstp_port->master_state = MSTP_MASTER_STATE_USE_TOKEN;
|
mstp_port->master_state = MSTP_MASTER_STATE_USE_TOKEN;
|
||||||
|
transition_now = true;
|
||||||
break;
|
break;
|
||||||
/* ReceivedPFM */
|
/* ReceivedPFM */
|
||||||
case FRAME_TYPE_POLL_FOR_MASTER:
|
case FRAME_TYPE_POLL_FOR_MASTER:
|
||||||
@@ -764,9 +772,11 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
mstp_port->DataLength);
|
mstp_port->DataLength);
|
||||||
/* broadcast DER just remains IDLE */
|
/* broadcast DER just remains IDLE */
|
||||||
if (mstp_port->DestinationAddress !=
|
if (mstp_port->DestinationAddress !=
|
||||||
MSTP_BROADCAST_ADDRESS)
|
MSTP_BROADCAST_ADDRESS) {
|
||||||
mstp_port->master_state =
|
mstp_port->master_state =
|
||||||
MSTP_MASTER_STATE_ANSWER_DATA_REQUEST;
|
MSTP_MASTER_STATE_ANSWER_DATA_REQUEST;
|
||||||
|
transition_now = true;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case FRAME_TYPE_TEST_REQUEST:
|
case FRAME_TYPE_TEST_REQUEST:
|
||||||
MSTP_Create_And_Send_Frame(mstp_port,
|
MSTP_Create_And_Send_Frame(mstp_port,
|
||||||
@@ -786,8 +796,8 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
/* more data frames. These may be BACnet Data frames or */
|
/* more data frames. These may be BACnet Data frames or */
|
||||||
/* proprietary frames. */
|
/* proprietary frames. */
|
||||||
case MSTP_MASTER_STATE_USE_TOKEN:
|
case MSTP_MASTER_STATE_USE_TOKEN:
|
||||||
/* NothingToSend */
|
|
||||||
if (!mstp_port->TxReady) {
|
if (!mstp_port->TxReady) {
|
||||||
|
/* NothingToSend */
|
||||||
mstp_port->FrameCount = mstp_port->Nmax_info_frames;
|
mstp_port->FrameCount = mstp_port->Nmax_info_frames;
|
||||||
mstp_port->master_state = MSTP_MASTER_STATE_DONE_WITH_TOKEN;
|
mstp_port->master_state = MSTP_MASTER_STATE_DONE_WITH_TOKEN;
|
||||||
} else {
|
} else {
|
||||||
@@ -796,8 +806,8 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
(uint8_t *) & mstp_port->TxBuffer[0], mstp_port->TxLength);
|
(uint8_t *) & mstp_port->TxBuffer[0], mstp_port->TxLength);
|
||||||
mstp_port->FrameCount++;
|
mstp_port->FrameCount++;
|
||||||
switch (mstp_port->TxFrameType) {
|
switch (mstp_port->TxFrameType) {
|
||||||
/* SendAndWait */
|
|
||||||
case FRAME_TYPE_BACNET_DATA_EXPECTING_REPLY:
|
case FRAME_TYPE_BACNET_DATA_EXPECTING_REPLY:
|
||||||
|
/* SendAndWait */
|
||||||
if (destination == MSTP_BROADCAST_ADDRESS)
|
if (destination == MSTP_BROADCAST_ADDRESS)
|
||||||
mstp_port->master_state =
|
mstp_port->master_state =
|
||||||
MSTP_MASTER_STATE_DONE_WITH_TOKEN;
|
MSTP_MASTER_STATE_DONE_WITH_TOKEN;
|
||||||
@@ -808,16 +818,17 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
case FRAME_TYPE_TEST_REQUEST:
|
case FRAME_TYPE_TEST_REQUEST:
|
||||||
mstp_port->master_state = MSTP_MASTER_STATE_WAIT_FOR_REPLY;
|
mstp_port->master_state = MSTP_MASTER_STATE_WAIT_FOR_REPLY;
|
||||||
break;
|
break;
|
||||||
/* SendNoWait */
|
|
||||||
case FRAME_TYPE_TEST_RESPONSE:
|
case FRAME_TYPE_TEST_RESPONSE:
|
||||||
case FRAME_TYPE_BACNET_DATA_NOT_EXPECTING_REPLY:
|
case FRAME_TYPE_BACNET_DATA_NOT_EXPECTING_REPLY:
|
||||||
default:
|
default:
|
||||||
|
/* SendNoWait */
|
||||||
mstp_port->master_state =
|
mstp_port->master_state =
|
||||||
MSTP_MASTER_STATE_DONE_WITH_TOKEN;
|
MSTP_MASTER_STATE_DONE_WITH_TOKEN;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
mstp_port->TxReady = false;
|
mstp_port->TxReady = false;
|
||||||
}
|
}
|
||||||
|
transition_now = true;
|
||||||
break;
|
break;
|
||||||
/* In the WAIT_FOR_REPLY state, the node waits for */
|
/* In the WAIT_FOR_REPLY state, the node waits for */
|
||||||
/* a reply from another node. */
|
/* a reply from another node. */
|
||||||
@@ -831,6 +842,7 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
/* to the USE_TOKEN state. (Because of the length of the timeout, */
|
/* to the USE_TOKEN state. (Because of the length of the timeout, */
|
||||||
/* this transition will cause the token to be passed regardless */
|
/* this transition will cause the token to be passed regardless */
|
||||||
/* of the initial value of FrameCount.) */
|
/* of the initial value of FrameCount.) */
|
||||||
|
transition_now = true;
|
||||||
} else {
|
} else {
|
||||||
if (mstp_port->ReceivedInvalidFrame == true) {
|
if (mstp_port->ReceivedInvalidFrame == true) {
|
||||||
/* InvalidFrame */
|
/* InvalidFrame */
|
||||||
@@ -876,6 +888,7 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
}
|
}
|
||||||
mstp_port->ReceivedValidFrame = false;
|
mstp_port->ReceivedValidFrame = false;
|
||||||
}
|
}
|
||||||
|
transition_now = true;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
/* The DONE_WITH_TOKEN state either sends another data frame, */
|
/* The DONE_WITH_TOKEN state either sends another data frame, */
|
||||||
@@ -950,6 +963,7 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
mstp_port->RetryCount = 0;
|
mstp_port->RetryCount = 0;
|
||||||
mstp_port->master_state = MSTP_MASTER_STATE_POLL_FOR_MASTER;
|
mstp_port->master_state = MSTP_MASTER_STATE_POLL_FOR_MASTER;
|
||||||
}
|
}
|
||||||
|
transition_now = true;
|
||||||
break;
|
break;
|
||||||
/* The PASS_TOKEN state listens for a successor to begin using */
|
/* The PASS_TOKEN state listens for a successor to begin using */
|
||||||
/* the token that this node has just attempted to pass. */
|
/* the token that this node has just attempted to pass. */
|
||||||
@@ -960,6 +974,7 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
/* Assume that a frame has been sent by the new token user. */
|
/* Assume that a frame has been sent by the new token user. */
|
||||||
/* Enter the IDLE state to process the frame. */
|
/* Enter the IDLE state to process the frame. */
|
||||||
mstp_port->master_state = MSTP_MASTER_STATE_IDLE;
|
mstp_port->master_state = MSTP_MASTER_STATE_IDLE;
|
||||||
|
transition_now = true;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (mstp_port->RetryCount < Nretry_token) {
|
if (mstp_port->RetryCount < Nretry_token) {
|
||||||
@@ -990,6 +1005,7 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
/* find a new successor to TS */
|
/* find a new successor to TS */
|
||||||
mstp_port->master_state =
|
mstp_port->master_state =
|
||||||
MSTP_MASTER_STATE_POLL_FOR_MASTER;
|
MSTP_MASTER_STATE_POLL_FOR_MASTER;
|
||||||
|
transition_now = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@@ -1005,6 +1021,7 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
/* Some other node exists at a lower address. */
|
/* Some other node exists at a lower address. */
|
||||||
/* Enter the IDLE state to receive and process the incoming frame. */
|
/* Enter the IDLE state to receive and process the incoming frame. */
|
||||||
mstp_port->master_state = MSTP_MASTER_STATE_IDLE;
|
mstp_port->master_state = MSTP_MASTER_STATE_IDLE;
|
||||||
|
transition_now = true;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
ns_timeout =
|
ns_timeout =
|
||||||
@@ -1027,6 +1044,7 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
/* enter the POLL_FOR_MASTER state to find a new successor to TS. */
|
/* enter the POLL_FOR_MASTER state to find a new successor to TS. */
|
||||||
mstp_port->master_state =
|
mstp_port->master_state =
|
||||||
MSTP_MASTER_STATE_POLL_FOR_MASTER;
|
MSTP_MASTER_STATE_POLL_FOR_MASTER;
|
||||||
|
transition_now = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@@ -1060,6 +1078,7 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
mstp_port->master_state = MSTP_MASTER_STATE_IDLE;
|
mstp_port->master_state = MSTP_MASTER_STATE_IDLE;
|
||||||
}
|
}
|
||||||
mstp_port->ReceivedValidFrame = false;
|
mstp_port->ReceivedValidFrame = false;
|
||||||
|
transition_now = true;
|
||||||
} else if ((mstp_port->SilenceTimer >= Tusage_timeout) ||
|
} else if ((mstp_port->SilenceTimer >= Tusage_timeout) ||
|
||||||
(mstp_port->ReceivedInvalidFrame == true)) {
|
(mstp_port->ReceivedInvalidFrame == true)) {
|
||||||
if (mstp_port->SoleMaster == true) {
|
if (mstp_port->SoleMaster == true) {
|
||||||
@@ -1104,6 +1123,7 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
mstp_port->ReceivedInvalidFrame = false;
|
mstp_port->ReceivedInvalidFrame = false;
|
||||||
|
transition_now = true;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
/* The ANSWER_DATA_REQUEST state is entered when a */
|
/* The ANSWER_DATA_REQUEST state is entered when a */
|
||||||
@@ -1125,6 +1145,8 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
(uint8_t *) & mstp_port->TxBuffer[0],
|
(uint8_t *) & mstp_port->TxBuffer[0],
|
||||||
mstp_port->TxLength);
|
mstp_port->TxLength);
|
||||||
mstp_port->TxReady = false;
|
mstp_port->TxReady = false;
|
||||||
|
mstp_port->master_state = MSTP_MASTER_STATE_IDLE;
|
||||||
|
transition_now = true;
|
||||||
}
|
}
|
||||||
/* Test Request */
|
/* Test Request */
|
||||||
/* If a receiving node can successfully receive and return */
|
/* If a receiving node can successfully receive and return */
|
||||||
@@ -1144,8 +1166,9 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
mstp_port->This_Station,
|
mstp_port->This_Station,
|
||||||
(uint8_t *) & mstp_port->InputBuffer[0],
|
(uint8_t *) & mstp_port->InputBuffer[0],
|
||||||
mstp_port->DataLength);
|
mstp_port->DataLength);
|
||||||
|
mstp_port->master_state = MSTP_MASTER_STATE_IDLE;
|
||||||
|
transition_now = true;
|
||||||
}
|
}
|
||||||
mstp_port->master_state = MSTP_MASTER_STATE_IDLE;
|
|
||||||
}
|
}
|
||||||
/* DeferredReply */
|
/* DeferredReply */
|
||||||
/* If no reply will be available from the higher layers */
|
/* If no reply will be available from the higher layers */
|
||||||
@@ -1162,6 +1185,7 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
mstp_port->SourceAddress,
|
mstp_port->SourceAddress,
|
||||||
mstp_port->This_Station, NULL, 0);
|
mstp_port->This_Station, NULL, 0);
|
||||||
mstp_port->master_state = MSTP_MASTER_STATE_IDLE;
|
mstp_port->master_state = MSTP_MASTER_STATE_IDLE;
|
||||||
|
transition_now = true;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
@@ -1169,7 +1193,7 @@ void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t *mstp_port)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
return transition_now;
|
||||||
}
|
}
|
||||||
|
|
||||||
void MSTP_Init(volatile struct mstp_port_struct_t *mstp_port,
|
void MSTP_Init(volatile struct mstp_port_struct_t *mstp_port,
|
||||||
|
|||||||
+1
-1
@@ -221,7 +221,7 @@ extern "C" {
|
|||||||
*mstp_port);
|
*mstp_port);
|
||||||
void MSTP_Receive_Frame_FSM(volatile struct mstp_port_struct_t
|
void MSTP_Receive_Frame_FSM(volatile struct mstp_port_struct_t
|
||||||
*mstp_port);
|
*mstp_port);
|
||||||
void MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t
|
bool MSTP_Master_Node_FSM(volatile struct mstp_port_struct_t
|
||||||
*mstp_port);
|
*mstp_port);
|
||||||
|
|
||||||
/* returns true if line is active */
|
/* returns true if line is active */
|
||||||
|
|||||||
@@ -107,19 +107,6 @@ int dlmstp_send_pdu(BACNET_ADDRESS * dest, /* destination address */
|
|||||||
return bytes_sent;
|
return bytes_sent;
|
||||||
}
|
}
|
||||||
|
|
||||||
void dlmstp_task(void)
|
|
||||||
{
|
|
||||||
RS485_Check_UART_Data(&MSTP_Port);
|
|
||||||
/* only do receive state machine while we don't have a frame */
|
|
||||||
if ((MSTP_Port.ReceivedValidFrame == false) &&
|
|
||||||
(MSTP_Port.ReceivedInvalidFrame == false)) {
|
|
||||||
MSTP_Receive_Frame_FSM(&MSTP_Port);
|
|
||||||
}
|
|
||||||
/* only do master state machine while rx is idle */
|
|
||||||
if (MSTP_Port.receive_state == MSTP_RECEIVE_STATE_IDLE)
|
|
||||||
MSTP_Master_Node_FSM(&MSTP_Port);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* called about once a millisecond */
|
/* called about once a millisecond */
|
||||||
void dlmstp_millisecond_timer(void)
|
void dlmstp_millisecond_timer(void)
|
||||||
{
|
{
|
||||||
@@ -135,7 +122,17 @@ uint16_t dlmstp_receive(BACNET_ADDRESS * src, /* source address */
|
|||||||
{
|
{
|
||||||
uint16_t pdu_len = 0;
|
uint16_t pdu_len = 0;
|
||||||
|
|
||||||
(void) timeout;
|
(void) timeout;
|
||||||
|
/* only do receive state machine while we don't have a frame */
|
||||||
|
if ((MSTP_Port.ReceivedValidFrame == false) &&
|
||||||
|
(MSTP_Port.ReceivedInvalidFrame == false)) {
|
||||||
|
RS485_Check_UART_Data(&MSTP_Port);
|
||||||
|
MSTP_Receive_Frame_FSM(&MSTP_Port);
|
||||||
|
}
|
||||||
|
/* only do master state machine while rx is idle */
|
||||||
|
if (MSTP_Port.receive_state == MSTP_RECEIVE_STATE_IDLE) {
|
||||||
|
while (MSTP_Master_Node_FSM(&MSTP_Port)) {};
|
||||||
|
}
|
||||||
/* see if there is a packet available */
|
/* see if there is a packet available */
|
||||||
if (Receive_Buffer.ready) {
|
if (Receive_Buffer.ready) {
|
||||||
memmove(src, &Receive_Buffer.address,
|
memmove(src, &Receive_Buffer.address,
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ void RTOS_Initialize(void)
|
|||||||
{
|
{
|
||||||
/* allow OS to setup IRQ 1 by using a dummy call */
|
/* allow OS to setup IRQ 1 by using a dummy call */
|
||||||
(void) kbhit();
|
(void) kbhit();
|
||||||
RTKernelInit(0); /* get the kernel going */
|
RTKernelInit(5); /* get the kernel going */
|
||||||
RTKeybrdInit();
|
RTKeybrdInit();
|
||||||
//(void)CPUMoniInit(); /* not needed - just monitor idle task */
|
//(void)CPUMoniInit(); /* not needed - just monitor idle task */
|
||||||
RTComInit();
|
RTComInit();
|
||||||
@@ -125,7 +125,7 @@ void RTOS_Initialize(void)
|
|||||||
RTCMOSSetSystemTime(); /* get the right time-of-day */
|
RTCMOSSetSystemTime(); /* get the right time-of-day */
|
||||||
|
|
||||||
/* create timer tick task */
|
/* create timer tick task */
|
||||||
RTKCreateTask(millisecond_task, 1, 1024 * 8, "millisec task");
|
RTKCreateTask(millisecond_task, 16, 1024 * 8, "millisec task");
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
@@ -156,9 +156,7 @@ int main(int argc, char *argv[])
|
|||||||
/* loop forever */
|
/* loop forever */
|
||||||
for (;;) {
|
for (;;) {
|
||||||
/* input */
|
/* input */
|
||||||
#ifdef BACDL_MSTP
|
|
||||||
dlmstp_task();
|
|
||||||
#endif
|
|
||||||
/* returns 0 bytes on timeout */
|
/* returns 0 bytes on timeout */
|
||||||
pdu_len = datalink_receive(&src, &Rx_Buf[0], MAX_MPDU, timeout);
|
pdu_len = datalink_receive(&src, &Rx_Buf[0], MAX_MPDU, timeout);
|
||||||
/* process */
|
/* process */
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ PRODUCT_EXE = $(PRODUCT).exe
|
|||||||
#DEFINES = -DDOC;BIG_ENDIAN=0;TSM_ENABLED=1;PRINT_ENABLED=1;BACDL_BIP=1
|
#DEFINES = -DDOC;BIG_ENDIAN=0;TSM_ENABLED=1;PRINT_ENABLED=1;BACDL_BIP=1
|
||||||
#DEFINES = -DDOC;BIG_ENDIAN=0;TSM_ENABLED=1;PRINT_ENABLED=1;BACDL_ETHERNET=1
|
#DEFINES = -DDOC;BIG_ENDIAN=0;TSM_ENABLED=1;PRINT_ENABLED=1;BACDL_ETHERNET=1
|
||||||
#DEFINES = -DDOC;BIG_ENDIAN=0;TSM_ENABLED=1;PRINT_ENABLED=1;BACDL_ARCNET=1
|
#DEFINES = -DDOC;BIG_ENDIAN=0;TSM_ENABLED=1;PRINT_ENABLED=1;BACDL_ARCNET=1
|
||||||
DEFINES = -DDOC;BIG_ENDIAN=0;TSM_ENABLED=1;PRINT_ENABLED=1;BACDL_MSTP=1
|
DEFINES = -DDOC;BIG_ENDIAN=0;TSM_ENABLED=1;PRINT_ENABLED=0;BACDL_MSTP=1
|
||||||
|
|
||||||
SRCS = main.c \
|
SRCS = main.c \
|
||||||
ethernet.c \
|
ethernet.c \
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
*
|
*
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
#define PRINT_ENABLED_RS485 1
|
#define PRINT_ENABLED_RS485 0
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <rtkernel.h>
|
#include <rtkernel.h>
|
||||||
@@ -48,6 +48,36 @@ static long RS485_Base = 0;
|
|||||||
/* hardware IRQ number */
|
/* hardware IRQ number */
|
||||||
static long RS485_IRQ_Number = 0;
|
static long RS485_IRQ_Number = 0;
|
||||||
|
|
||||||
|
#if PRINT_ENABLED_RS485
|
||||||
|
static FineTime RS485_Debug_Transmit_Timer;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if PRINT_ENABLED_RS485
|
||||||
|
void RS485_Print_Frame(int port,
|
||||||
|
FineTime timer,
|
||||||
|
uint8_t * buffer, /* frame to send (up to 501 bytes of data) */
|
||||||
|
uint16_t nbytes)
|
||||||
|
{
|
||||||
|
uint16_t i; // byte counter
|
||||||
|
unsigned long duration; // measures the time from last output to this one
|
||||||
|
unsigned long seconds;
|
||||||
|
unsigned long milliseconds;
|
||||||
|
|
||||||
|
duration = ElapsedMilliSecs(timer);
|
||||||
|
seconds = duration / 1000U;
|
||||||
|
milliseconds = duration - (seconds * 1000U);
|
||||||
|
fprintf(stderr,"%0lu.%03lu: COM%d:",seconds,milliseconds,port+1);
|
||||||
|
for (i = 0; i < nbytes; i++)
|
||||||
|
{
|
||||||
|
unsigned value;
|
||||||
|
value = buffer[i];
|
||||||
|
fprintf(stderr," %02X",value);
|
||||||
|
}
|
||||||
|
fprintf(stderr,"\n");
|
||||||
|
fflush(stderr);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static void RS485_Standard_Port_Settings(long port, long *pIRQ,
|
static void RS485_Standard_Port_Settings(long port, long *pIRQ,
|
||||||
long *pBase)
|
long *pBase)
|
||||||
{
|
{
|
||||||
@@ -119,6 +149,9 @@ static RS485_Open_Port(int port, /* COM port number - COM1 = 0 */
|
|||||||
|
|
||||||
void RS485_Initialize(void)
|
void RS485_Initialize(void)
|
||||||
{
|
{
|
||||||
|
#if PRINT_ENABLED_RS485
|
||||||
|
MarkTime(&RS485_Debug_Transmit_Timer);
|
||||||
|
#endif
|
||||||
RS485_Standard_Port_Settings(RS485_Port, &RS485_IRQ_Number,
|
RS485_Standard_Port_Settings(RS485_Port, &RS485_IRQ_Number,
|
||||||
&RS485_Base);
|
&RS485_Base);
|
||||||
RS485_Open_Port(RS485_Port, RS485_Baud, RS485_Base, RS485_IRQ_Number);
|
RS485_Open_Port(RS485_Port, RS485_Baud, RS485_Base, RS485_IRQ_Number);
|
||||||
@@ -137,19 +170,16 @@ void RS485_Send_Frame(volatile struct mstp_port_struct_t *mstp_port, /* port
|
|||||||
while (!(LineStatus(RS485_Port) & TX_SHIFT_EMPTY))
|
while (!(LineStatus(RS485_Port) & TX_SHIFT_EMPTY))
|
||||||
RTKScheduler();
|
RTKScheduler();
|
||||||
RS485_RECEIVE_ENABLE(RS485_Port);
|
RS485_RECEIVE_ENABLE(RS485_Port);
|
||||||
|
/* SilenceTimer is cleared by the Receive State Machine when
|
||||||
|
activity is detected and by the SendFrame procedure as each
|
||||||
|
octet is transmitted. */
|
||||||
mstp_port->SilenceTimer = 0;
|
mstp_port->SilenceTimer = 0;
|
||||||
#if PRINT_ENABLED_RS485
|
#if PRINT_ENABLED_RS485
|
||||||
{
|
RS485_Print_Frame(RS485_Port,
|
||||||
int i = 0;
|
RS485_Debug_Transmit_Timer,
|
||||||
fprintf(stderr, "RS485 Tx:");
|
buffer, /* frame to send (up to 501 bytes of data) */
|
||||||
for (i = 0; i < nbytes; i++) {
|
nbytes);
|
||||||
fprintf(stderr, " %02X", buffer[i]);
|
MarkTime(&RS485_Debug_Transmit_Timer);
|
||||||
if ((!(i % 20)) && (i != 0)) {
|
|
||||||
fprintf(stderr, "\r\n ");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
fprintf(stderr, "\r\n");
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|||||||
Reference in New Issue
Block a user