Skip to content

Commit

Permalink
SoftRF Release 1.4 firmware binaries for RP2040, ESP32-C3, ESP8266 an…
Browse files Browse the repository at this point in the history
…d ASR650x [skip ci]
  • Loading branch information
Linar Yusupov committed Nov 8, 2023
1 parent 4296265 commit 533bd4a
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/softrf-issue-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ Recommended:
- [ ] SkyView EZ
- [ ] SkyView Pico
- [ ] Uni
- [ ] Ham
- [ ] Midi
- [ ] Mini
<!-- - [ ] Bracelet -->
- [ ] Academy
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 2 additions & 0 deletions software/firmware/source/SoftRF/src/platform/ESP32.h
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@ extern Adafruit_NeoPixel strip;
#include "iomap/AiThinker_C3_12F.h"
#include "iomap/LilyGO_TTWR.h"
#include "iomap/Heltec_Tracker.h"
#include "iomap/WT0132C6.h"

extern WebServer server;

Expand All @@ -240,6 +241,7 @@ enum esp32_board_id {
ESP32_DEVKIT,
ESP32_S3_DEVKIT,
ESP32_C3_DEVKIT,
ESP32_C6_DEVKIT,
ESP32_TTGO_V2_OLED,
ESP32_HELTEC_OLED,
ESP32_TTGO_T_BEAM,
Expand Down
37 changes: 37 additions & 0 deletions software/firmware/source/SoftRF/src/platform/iomap/WT0132C6.h
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

0 comments on commit 533bd4a

Please sign in to comment.