Skip to content
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

Add Zephyr to Nano 33 BLE board #165

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
Add Zephyr to Nano 33 BLE board
Zephyr supports Nano 33 33, add it as a build option.

I was able to upload the blink sketch using this config.

Zephyr docs: https://docs.zephyrproject.org/3.2.0/boards/arm/arduino_nano_33_ble/doc/index.html
  • Loading branch information
nickgarvey authored Dec 31, 2022
commit 16befdfd8e8e887fb37d29b5bee626d9ef3e2be4
8 changes: 6 additions & 2 deletions boards/nano33ble.json
Original file line number Diff line number Diff line change
@@ -18,7 +18,10 @@
]
],
"mcu": "nrf52840",
"variant": "ARDUINO_NANO33BLE"
"variant": "ARDUINO_NANO33BLE",
"zephyr": {
"variant": "arduino_nano_33_ble"
}
},
"connectivity": [
"bluetooth"
@@ -29,7 +32,8 @@
"svd_path": "nrf52840.svd"
},
"frameworks": [
"arduino"
"arduino",
"zephyr"
],
"name": "Arduino Nano 33 BLE",
"upload": {