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
env: Arduino 1.8.9 + Arduino_Core_STM32 + RobotDyn STM32 MINI
code:
// It does not work if there is this line.// #include <STM32FreeRTOS.h>
#include"Keyboard.h"voidsetup()
{
Keyboard.begin();
delay(1000);
Keyboard.print("test");
while (1);
}
voidloop()
{
}
The text was updated successfully, but these errors were encountered:
I had similar issues, I applied configMEMMANG_HEAP_NB 3 correction following your comments, and everything works fine now.
To be more precise, newlib had adverse effects on Arduino Interrupts (not working) and also on the initialization code of the SPBTLE-RF module on the Discovery IoT Node board.
env: Arduino 1.8.9 + Arduino_Core_STM32 + RobotDyn STM32 MINI
code:
The text was updated successfully, but these errors were encountered: