Skip to content

Commit

Permalink
Updating readme's, build-all and u2if.py
Browse files Browse the repository at this point in the history
  • Loading branch information
BlitzCityDIY committed Jul 10, 2023
1 parent b0b8c36 commit 76b61f2
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 1 deletion.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,20 @@ Implemented interfaces:

</details>

### Adafruit KB2040
<details>

Implemented interfaces:
- GPIO
- ADC
- PWM
- UART0
- I2C0
- SPI0
- WS2812B

</details>

### Adafruit Trinkey QT2040
<details>

Expand Down
5 changes: 4 additions & 1 deletion firmware/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ KERNEL=="hidraw*", ATTRS{idVendor}=="239a", ATTRS{idProduct}=="812E", TAG+="uacc
KERNEL=="hidraw*", ATTRS{idVendor}=="239a", ATTRS{idProduct}=="812C", TAG+="uaccess", GROUP="plugdev", MODE="0660"
# Adafruit ItsyBitsy
KERNEL=="hidraw*", ATTRS{idVendor}=="239a", ATTRS{idProduct}=="00fd", TAG+="uaccess", GROUP="plugdev", MODE="0660"
# Adafruit KB2040
KERNEL=="hidraw*", ATTRS{idVendor}=="239a", ATTRS{idProduct}=="0105", TAG+="uaccess", GROUP="plugdev", MODE="0660"
# Adafruit QT2040 Trinkey
KERNEL=="hidraw*", ATTRS{idVendor}=="239a", ATTRS{idProduct}=="0109", TAG+="uaccess", GROUP="plugdev", MODE="0660"
# Adafruit QTPY
Expand Down Expand Up @@ -73,7 +75,8 @@ Compatible board can be:
- FEATHER_CAN
- FEATHER_EPD
- FEATHER_RFM
- ITSYBITSY
- ITSYBITSY
- KB2040
- QTPY
- QT2040_TRINKEY

Expand Down
1 change: 1 addition & 0 deletions firmware/build-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@ build qt2040_trinkey QT2040_TRINKEY 0 0 1000 0
build feather_epd FEATHER_EPD 0 1 1000 0
build feather_rfm FEATHER_RFM 0 1 1000 0
build feather_can FEATHER_CAN 0 1 1000 0
build kb2040 KB2040 0 1 1000 0

1 change: 1 addition & 0 deletions source/machine/u2if.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
(0x239a, 0x812C), # Adafruit Feather ThinkInk
(0x239a, 0x812E), # Adafruit Feather RFM
(0x239a, 0x00fd), # Adafruit ItsyBitsy
(0x239a, 0x0105), # Adafruit KB2040
(0x239a, 0x0109), # Adafruit QT2040 Trinket
(0x239a, 0x00f7), # Adafruit QTPY
]
Expand Down

0 comments on commit 76b61f2

Please sign in to comment.