Mikael Patel
Mikael Patel
See https://github.com/arduino/Arduino/pull/5182
The Cosa RTT (Real-Time Timer) uses Timer 2 (or Timer 0) and match registers. The PWMpins for the Timer cannot be used when using RTT.
The current OWI class implementation is bit-banging. The DS2482 allows a bridge from I2C to 1-Wire. It should be possible to use OWI device drivers with the different adapters.
The OWI (1-Wire) device driver support assumes single thread. Both TWI (I2C) and SPI have been updated with multi-thread support. The OWI needs the same type of update to work...
Release R1.1.1 does not work with latest Arduino IDE 1.6.7. The Arduino build fails due to pre-post build rules.
Demonstrate how to build a simple fixed record (struct) database on SD/FAT16. 1. Log with timestamp and always write last. 2. Binary search on timestamp. 3. Numbered records. 4. Field...
Current implementation will synchronize with driver on twi.end(). An Event handler is possible but could be a callback to the driver instead which would be responsible for events in asynchronous...