fast-arduino-lib
fast-arduino-lib copied to clipboard
C++ platform to build Arduino and AVR projects. Rationale is size and speed optimization.
Current software UART heavily uses ISR for receiving data. Due to high bit rates, it has been decided that one ISR call should handle a complete byte, which is fast...
Still to be defined: format(s) to support (FAT16, FAT32, others...) File API shall be integrated to iostream API (for text files).
Refs: - https://www.adafruit.com/product/2633 - https://github.com/adafruit/Adafruit_BluefruitLE_nRF51/tree/master
Arduino LCD is based on ILI 9163 LCD display chip. It also includes a SC Card reader (not the target of this issue though).
I may be misusing the feature, but I cannot make it working. I am referring to the FUNCTOR template parameter in: template class TReadRegisterFuture It appears only compiling when both...
Currently, FastArduino ATtiny85 support enables only 2 PWM pins, both based on Timer0. Event though currently FastArduino does not allow support for PWM pins linked to more than 1 timer,...