Skip to content
Snippets Groups Projects
Commit 2f8beb8d authored by Damien George's avatar Damien George
Browse files

stmhal: Fix bug with USB CDC transmit buffer wrap around.

parent a82d7ef2
No related branches found
No related tags found
No related merge requests found
...@@ -363,7 +363,7 @@ void USBD_CDC_SetInterrupt(int chr, void *data) { ...@@ -363,7 +363,7 @@ void USBD_CDC_SetInterrupt(int chr, void *data) {
void USBD_CDC_Tx(const char *str, uint32_t len) { void USBD_CDC_Tx(const char *str, uint32_t len) {
for (int i = 0; i < len; i++) { for (int i = 0; i < len; i++) {
uint timeout = 200; uint timeout = 200;
while (UserTxBufPtrIn + 1 == UserTxBufPtrOut) { while (((UserTxBufPtrIn + 1) & (APP_TX_DATA_SIZE - 1)) == UserTxBufPtrOut) {
if (timeout-- == 0) { if (timeout-- == 0) {
break; break;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment