-
-
Notifications
You must be signed in to change notification settings - Fork 295
Using the Framework w o Arduino
Phil Schatzmann edited this page Sep 21, 2022
·
39 revisions
I created an experimental feature to which support the use of this framework w/o the Arduino API. So you can use it w.g. in a STM32 Cube IDE for STM32 programs.
Just compile your program after adding this library e.g. with the help of cmake.
The linker will notifiy you about the missing methods that you need to implement: They are declared in AudioLibs/NoArduino.h. Most likely you just need to provide:
- delay()
- HardwareSerial:: write(uint8_t);
- HardwareSerial:: write(const uint8_t *buffer, size_t size);
- millis()