forked from lyusupov/SoftRF
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SoftRF Release 1.4 firmware binaries for RP2040, ESP32-C3, ESP8266 an…
…d ASR650x [skip ci]
- Loading branch information
Linar Yusupov
committed
Nov 8, 2023
1 parent
4296265
commit 533bd4a
Showing
7 changed files
with
41 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
Binary file not shown.
Binary file added
BIN
+1020 KB
software/firmware/binaries/ESP32C3/SoftRF/SoftRF-firmware-v1.4-ESP32C3.zip
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+365 KB
software/firmware/binaries/RP2040/SoftRF/SoftRF-firmware-v1.4-RP2040.uf2
Binary file not shown.
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
37 changes: 37 additions & 0 deletions
37
software/firmware/source/SoftRF/src/platform/iomap/WT0132C6.h
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,37 @@ | ||
|
||
/* ESP32-C6 */ | ||
#define SOC_GPIO_PIN_C6_CONS_RX 17 | ||
#define SOC_GPIO_PIN_C6_CONS_TX 16 | ||
|
||
// GNSS module | ||
#define SOC_GPIO_PIN_C6_GNSS_RX 9 /* D3 */ | ||
#define SOC_GPIO_PIN_C6_GNSS_TX 22 | ||
#define SOC_GPIO_PIN_C6_GNSS_PPS SOC_UNUSED_PIN // 0 | ||
|
||
// USB CDC/JTAG | ||
#define SOC_GPIO_PIN_C6_USB_DP 13 /* NC */ | ||
#define SOC_GPIO_PIN_C6_USB_DN 12 /* NC */ | ||
|
||
// SPI | ||
#define SOC_GPIO_PIN_C6_MOSI 6 /* D7 */ | ||
#define SOC_GPIO_PIN_C6_MISO 5 /* D6 */ | ||
#define SOC_GPIO_PIN_C6_SCK 4 /* D5 */ | ||
#define SOC_GPIO_PIN_C6_SS 7 /* D8 */ | ||
|
||
// NRF905 | ||
#define SOC_GPIO_PIN_C6_TXE 2 /* D0 */ | ||
#define SOC_GPIO_PIN_C6_CE 8 /* D4 */ | ||
#define SOC_GPIO_PIN_C6_PWR 10 /* D2 */ | ||
|
||
// SX1276 | ||
#define SOC_GPIO_PIN_C6_RST 10 /* D2 */ | ||
#define SOC_GPIO_PIN_C6_DIO0 2 /* D0 */ | ||
#define SOC_GPIO_PIN_C6_SDA 10 /* D2 */ | ||
#define SOC_GPIO_PIN_C6_SCL 8 /* D4 */ | ||
|
||
// battery voltage (ADC) | ||
#define SOC_GPIO_PIN_C6_BATTERY 1 /* A0 */ | ||
|
||
// auxillary | ||
#define SOC_GPIO_PIN_C6_BUZZER 21 /* 10 */ | ||
#define SOC_GPIO_PIN_C6_STATUS SOC_UNUSED_PIN |