little fix in USB ringbuffer for STM32F103

This commit is contained in:
2022-08-31 14:48:21 +03:00
parent a56bc1bf14
commit fcf5e03338
4 changed files with 19 additions and 17 deletions

View File

@@ -28,6 +28,6 @@
#define BLOCKSIZE (USB_TXBUFSZ)
int RB_read(char s[BLOCKSIZE]);
void RB_write(const char *str, int l);
int RB_write(const char *str, int l);
#endif // RINGBUFFER_H__