-
Notifications
You must be signed in to change notification settings - Fork 909
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
targets: add WaveShare ESP-C3-32S-Kit
I've had this board for a while now, but never added proper TinyGo support. So here is a PR to do just that.
- Loading branch information
Showing
3 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
//go:build esp_c3_32s_kit | ||
|
||
package machine | ||
|
||
// See: | ||
// * https://www.waveshare.com/w/upload/8/8f/Esp32-c3s_specification.pdf | ||
// * https://www.waveshare.com/w/upload/4/46/Nodemcu-esp-c3-32s-kit-schematics.pdf | ||
|
||
// Digital Pins | ||
const ( | ||
IO0 = GPIO0 | ||
IO1 = GPIO1 | ||
IO2 = GPIO2 | ||
IO3 = GPIO3 | ||
IO4 = GPIO4 | ||
IO5 = GPIO5 | ||
IO6 = GPIO6 | ||
IO7 = GPIO7 | ||
IO8 = GPIO8 | ||
IO9 = GPIO9 | ||
IO18 = GPIO18 | ||
IO19 = GPIO19 | ||
) | ||
|
||
const ( | ||
LED_RED = IO3 | ||
LED_GREEN = IO4 | ||
LED_BLUE = IO5 | ||
|
||
LED = LED_RED | ||
|
||
LED1 = LED_RED | ||
LED2 = LED_GREEN | ||
) | ||
|
||
// I2C pins | ||
const ( | ||
SDA_PIN = NoPin | ||
SCL_PIN = NoPin | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"inherits": ["esp32c3"], | ||
"build-tags": ["esp_c3_32s_kit"], | ||
"serial-port": ["1a86:7523"] | ||
} |