We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 205788d commit 5bd629aCopy full SHA for 5bd629a
bricks/_common_stm32/mphalport.c
@@ -130,7 +130,8 @@ int mp_hal_stdin_rx_chr(void) {
130
void mp_hal_stdout_tx_strn(const char *str, mp_uint_t len) {
131
while (len) {
132
uint32_t size = len;
133
- pbio_error_t err = pbsys_bluetooth_tx((const uint8_t *)str, &size);
+ // pbio_error_t err = pbsys_bluetooth_tx((const uint8_t *)str, &size);
134
+ pbio_error_t err = PBIO_ERROR_AGAIN;
135
136
if (err == PBIO_SUCCESS) {
137
str += size;
0 commit comments