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
The user experience and interface for sending DAC voltages via UART is pretty bad:
Very little feedback is provided
If the user enters more characters than the buffer's length, the beginning of the buffer gets overwritten
Rather than using a circular buffer and overwriting previous characters, maybe we should
make the buffer larger than needed
ignore any input that goes beyond the buffer size
wait until the user enters a carriage return before setting the buffer index back to 0; i.e., don't set the index back to 0 when we reach the end of the buffer without a carriage return.
The text was updated successfully, but these errors were encountered:
The user experience and interface for sending DAC voltages via UART is pretty bad:
Rather than using a circular buffer and overwriting previous characters, maybe we should
The text was updated successfully, but these errors were encountered: