Moved example goal to each module

This commit is contained in:
BlackMark 2020-02-01 22:18:47 +01:00
parent c53476a87b
commit da516d2262

View File

@ -48,9 +48,11 @@ The PWM mode of the hardware timer can also be used. Additionally, if PWM is nee
- [x] Interface for io-pins
- [x] Interface for io-ports
- [x] Interface for mapping io-pins onto virtual io-ports, where the pins do not have to be located on the same hardware port
- [x] Provide an example showcasing the usage and possibilities
- ADC
- [ ] Support all hardware provided configuration options
- [ ] Compile-time check for correct hardware configuration
- [ ] Provide an example showcasing the usage and possibilities
- UART
- [x] Separation of interface and backend-driver
- [ ] Support all hardware provided configuration options
@ -59,21 +61,24 @@ The PWM mode of the hardware timer can also be used. Additionally, if PWM is nee
- [x] Blocking hardware backend
- [x] Interrupt driven hardware backend
- [ ] Type-safe convenience functions for writing and reading basic data types
- [ ] Provide an example showcasing the usage and possibilities
- SPI
- [ ] Separation of interface and backend-driver
- [ ] Support all hardware provided configuration options
- [ ] Compile-time check for correct hardware configuration
- [ ] Software backend driver
- [ ] Provide an example showcasing the usage and possibilities
- I2C
- [x] Separation of interface and backend-driver
- [ ] Support all hardware provided configuration options
- [ ] Compile-time check for correct hardware configuration
- [ ] Software backend driver
- [ ] Provide an example showcasing the usage and possibilities
- Timers
- [ ] Support all hardware provided configuration options
- PWM
- [ ] Compile-time check for correct hardware configuration
- [ ] Software PWM on pins that don't have hardware PWM support
- [ ] Provide an example showcasing the usage and possibilities
- General
- [ ] Support for most common AVR chips (ATmega8, ATmega328, ATtiny85, ...)
- [ ] Provide examples for each module showcasing the usage and possibilities