File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 72
72
nRF5x: Allow NRF.setScan and NRF.findDevices to take the same search filters NRF.requestDevice does (fix #1496)
73
73
Fix buffer overrun if we have to reallocate a pointer to argument lists when calling a function (fix #1491)
74
74
Fix stack overflow if executing regex full of hundreds of open brackets (fix #1487)
75
+ Fix issue where STM32F4 USB could lock up if TX during heavy RX
75
76
76
77
1v99 : Increase jslMatch error buffer size to handle "UNFINISHED TEMPLATE LITERAL" string (#1426)
77
78
nRF5x: Make FlashWrite cope with flash writes > 4k
Original file line number Diff line number Diff line change @@ -659,7 +659,7 @@ static uint8_t USBD_CDC_HID_SOF (struct _USBD_HandleTypeDef *pdev) {
659
659
CDC_DATA_FS_OUT_PACKET_SIZE );
660
660
}
661
661
662
- if (!handle -> cdcState & CDC_WRITE_TX_WAIT ) {
662
+ if (!( handle -> cdcState & CDC_WRITE_TX_WAIT ) ) {
663
663
// try and fill the buffer
664
664
unsigned int len = 0 ;
665
665
int c ;
You can’t perform that action at this time.
0 commit comments