You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem Summary
I found during device testing script creation that the ECHO command in command.c was not reliable when used multiple times in quick succession.
Symptoms
Data to be ECHO'd is not returned from the unit and is lost occasionally, most notable during high volume use cases
The text was updated successfully, but these errors were encountered:
I found that the command.c ECHO command directly implemented the UART Layer 4 transmit routine without a buffer our involvement of the housekeeping routines. This likely causes a race condition where occasionally another function buffer is attempting to transmit and the ECHO data is interjected during a transmission. A function in the housekeeping routing such as telemetry running immediately after an ECHO was placed into the Layer 4 transmit structure could cause issues at first thought.
Problem Summary
I found during device testing script creation that the ECHO command in command.c was not reliable when used multiple times in quick succession.
Symptoms
The text was updated successfully, but these errors were encountered: