-
Notifications
You must be signed in to change notification settings - Fork 7.3k
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
Arduino nano 33 ble corrections #84675
Conversation
Hello @KurtE, and thank you very much for your first pull request to the Zephyr project! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Checked with https://docs.arduino.cc/resources/pinouts/ABX00030-full-pinout.pdf , fixes are consistent
@KurtE there's a bug in diff --git a/boards/arduino/nano_33_ble/arduino_nano_33_ble_nrf52840_sense.yaml b/boards/arduino/nano_33_ble/arduino_nano_33_ble_nrf52840_sense.yaml
index a90550ce8f1..56f57856eef 100644
--- a/boards/arduino/nano_33_ble/arduino_nano_33_ble_nrf52840_sense.yaml
+++ b/boards/arduino/nano_33_ble/arduino_nano_33_ble_nrf52840_sense.yaml
@@ -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 also please check errors reported by the compliance check script to make your commits messages compliant :) thanks! |
5429dee
to
a9f227d
Compare
a9f227d
to
befd015
Compare
Hello @KurtE and thanks for this. You can also run compliance checks locally with |
Fix compliance check script. Arduino nano BLE - connector.dtsi pin corrections There were several pin mappings from Arduino pin to GPIO pin which were not correct. This includes Arduino pins: 7, 8, 18, 19, 21 Arduino NANO 33 BLE - init turn PWR LED on default Power LED light on. Signed-off-by: Kurt Eckhardt <kurte@rockisland.com>
befd015
to
88b2a45
Compare
Thanks @pillo79 - I thought I did, the commit was amended showing my Full name... Will try it locally as you mentioned. Thanks |
No worries, Benjamin just did it for you this time 😉 (thanks!) EDIT: |
Thanks |
No worries :)
|
... aaand a different issue appeared yesterday 😅 |
Hi @KurtE! To celebrate this milestone and showcase your contribution, we'd love to award you the Zephyr Technical Contributor badge. If you're interested, please claim your badge by filling out this form: Claim Your Zephyr Badge. Thank you for your valuable input, and we look forward to seeing more of your contributions in the future! 🪁 |
Some minor fixes/changes to the Arduino Nano 33 BLE board definitions as well as to
by default, turn the Power LED on.
The main change in this PR is to update the arduino_nano_r3_connctor.dtsi file to fix the
mappings of several pins (7, 8, 18, 19, 21) to match the hardware.
Thanks
Kurt