Skip to content

Arduino nano 33 ble corrections #84675

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
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
identifier: arduino_nano_33_ble//sense
identifier: arduino_nano_33_ble/nrf52840/sense
name: Arduino Nano 33 BLE Sense
type: mcu
arch: arm
Expand Down
10 changes: 5 additions & 5 deletions boards/arduino/nano_33_ble/arduino_nano_r3_connector.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
<4 0 &gpio1 15 0>, /* D4 */
<5 0 &gpio1 13 0>, /* D5 */
<6 0 &gpio1 14 0>, /* D6 */
<7 0 &gpio0 9 0>, /* D7 */
<8 0 &gpio0 10 0>, /* D8 */
<7 0 &gpio0 23 0>, /* D7 */
<8 0 &gpio0 21 0>, /* D8 */
<9 0 &gpio0 27 0>, /* D9 */
<10 0 &gpio1 2 0>, /* D10 */
<11 0 &gpio1 1 0>, /* D11 / SPI-MOSI */
Expand All @@ -27,10 +27,10 @@
<15 0 &gpio0 5 0>, /* D15 / A1 */
<16 0 &gpio0 30 0>, /* D16 / A2 */
<17 0 &gpio0 29 0>, /* D17 / A3 */
<18 0 &gpio0 14 0>, /* D18 / A4 / I2C-SDA */
<19 0 &gpio0 15 0>, /* D19 / A5 / I2C-SCL */
<18 0 &gpio0 31 0>, /* D18 / A4 / I2C-SDA */
<19 0 &gpio0 2 0>, /* D19 / A5 / I2C-SCL */
<20 0 &gpio0 28 0>, /* D20 / A6 */
<21 0 &gpio1 3 0>; /* D21 / A7 */
<21 0 &gpio0 3 0>; /* D21 / A7 */
};
};

Expand Down
2 changes: 1 addition & 1 deletion boards/arduino/nano_33_ble/board.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ static int board_init(void)
return res;
}

return gpio_pin_configure_dt(&user_led, GPIO_OUTPUT_INACTIVE);
return gpio_pin_configure_dt(&user_led, GPIO_OUTPUT_HIGH);
}

SYS_INIT(board_init, POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEVICE);
Loading