Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated readme with latest supported hardware #10

Merged
merged 1 commit into from Jun 27, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Expand Up @@ -70,6 +70,11 @@ The following peripherals are supported in `avr-hal-generic`:

### HAL Status
The chip-HAL crates currently support the following peripherals:
* [`atmega328p-hal`]('./chips/atmega328p-hal)
- [x] Spinning Delay
- [x] `PORTB`, `PORTC`, `PORTD` as digital IO (v2)
- [x] `USART0` for serial communication
- [x] I2C using `TWI`
* [`atmega32u4-hal`](./chips/atmega32u4-hal)
- [x] Spinning Delay
- [x] `PORTB`, `PORTC`, `PORTD`, `PORTE`, `PORTF` as digital IO (v2)
Expand All @@ -85,6 +90,9 @@ In `boards/` there are crates for the following hardware. Please note that this
* [Arduino Leonardo](./boards/arduino-leonardo)
- [Website](https://www.arduino.cc/en/Main/Arduino_BoardLeonardo)
- Support for basic digital IO
* [Arduino Uno](./boards/arduino-uno)
- [Website](https://store.arduino.cc/usa/arduino-uno-rev3)
- Support for basic digital IO
* [Adafruit Trinket (3V3 or 5V)](./boards/trinket) (**not** PRO!)
- [Website](https://learn.adafruit.com/introducing-trinket)
- Support for basic digital IO
Expand Down