From 870eb95b7a34d6007ed85b99367b854feae778e7 Mon Sep 17 00:00:00 2001 From: Mark Harfouche Date: Sat, 17 Oct 2020 14:03:13 -0400 Subject: [PATCH] Update build info depending on Teensy version --- README.md | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2c2c0fb..7201fe9 100644 --- a/README.md +++ b/README.md @@ -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: @@ -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 ```