Skip to content

Commit

Permalink
Update build info depending on Teensy version
Browse files Browse the repository at this point in the history
  • Loading branch information
hmaarrfk committed Oct 17, 2020
1 parent 1599054 commit 870eb95
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@ a host computer that sends requests to accomplish different actions.

Currently, we support:

1. GPIO
2. I2C
3. PWM
4. SPI

| Protocol | Teensy 3.2 | Teensy 4.0 |
|:---------|:-----------|:-----------|
| GPIO | Yes | Yes |
| I2C | Yes | Help wanted|
| PWM | Yes | Yes |
| SPI | Yes | Yes |

Future protocols include:

Expand All @@ -22,8 +25,19 @@ Future protocols include:

Generally speaking, this should help you prototype hardware, by bypassing the tedious steps of creating a USB Serial Parser, and letting you bring up hardware more naturally.

Upload with:
## Teensy 3.2

upload with

```
platformio run -e teensy32 --target upload
```

## Teensy 4.0

upload with

```
platformio run --target upload
platformio run -e teensy40 --target upload
```

0 comments on commit 870eb95

Please sign in to comment.