Skip to content

Update hellbender_2350A_devboard.h for release version of the board. #2441

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 13 additions & 9 deletions src/boards/include/boards/hellbender_2350A_devboard.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,17 @@ pico_board_cmake_set(PICO_PLATFORM, rp2350)
#define HB_2350A_IMU_INT_PIN 1
#define HB_2350A_USER_QWIIC_SDA_PIN 2
#define HB_2350A_USER_QWIIC_SCL_PIN 3
#define HB_2350A_RTC_INT_PIN 8
#define HB_2350A_RTC_INT_PIN 22
#define HB_2350A_SDCARD_CS_PIN 9
#define HB_2350A_LORA_IO1_PIN 10
#define HB_2350A_LORA_IO3_PIN 11
#define HB_2350A_LORA_CS_PIN 21
#define HB_2350A_RTC_CLKIN_PIN 22
#define HB_2350A_IMU_CLKOUT_PIN 23
#define HB_2350A_LORA_CS_PIN 28
#define HB_2350A_LORA_BUSY_PIN 24
#define HB_2350A_FUSB307_INT_PIN 25
#define HB_2350A_LORA_RESET_PIN 29
#define HB_2350A_RTC_CLKIN_PIN 22
#define HB_2350A_IMU_CLKOUT_PIN 23
#define HB_2350A_FUSB307_INT_PIN 21
#define HB_2350A_BQ25792_INT_PIN 8

// --- UART ---
// Note, conflicts with HSTX range
Expand All @@ -45,7 +46,11 @@ pico_board_cmake_set(PICO_PLATFORM, rp2350)
#define PICO_DEFAULT_UART_RX_PIN 13
#endif

// no PICO_DEFAULT_LED_PIN
// --- LED ---
#ifndef PICO_DEFAULT_LED_PIN
#define PICO_DEFAULT_LED_PIN 25
#endif

// no PICO_DEFAULT_WS2812_PIN

// --- I2C ---
Expand All @@ -72,9 +77,8 @@ pico_board_cmake_set(PICO_PLATFORM, rp2350)
#ifndef PICO_DEFAULT_SPI_RX_PIN
#define PICO_DEFAULT_SPI_RX_PIN 20
#endif
#ifndef PICO_DEFAULT_SPI_CSN_PIN
#define PICO_DEFAULT_SPI_CSN_PIN 21
#endif
// multiple devices, so this doesn't make much sense
// no PICO_DEFAULT_SPI_CSN_PIN

// --- FLASH ---

Expand Down
Loading