-
Notifications
You must be signed in to change notification settings - Fork 125
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
board: add reel_board and reel_board_v2 #99
Conversation
boards/reel_board.json
Outdated
@@ -0,0 +1,44 @@ | |||
{ | |||
"build": { | |||
"core": "nRF5", |
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.
This field is mostly used with Arduino framework. nRF5 core doesn't support this board, so it seems redundant to me.
boards/reel_board.json
Outdated
"core": "nRF5", | ||
"cpu": "cortex-m4", | ||
"f_cpu": "64000000L", | ||
"mcu": "nrf52832", |
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.
Looks like you forget to change the MCU name
boards/reel_board.json
Outdated
[ | ||
"0x0D28", | ||
"0x0204" | ||
] |
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.
Please fix formatting.
boards/reel_board.json
Outdated
"0x0204" | ||
] | ||
], | ||
"variant": "reel_board" |
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.
Please move the variant
field to the zephyr
section as it done in this manifest.
Hi @jremmert-phytec-iot ! Thanks for the PR. Please see my comments above, they apply to both boards. |
reel_board and reel_board_v2 differ in the passive display being used.
Thanks for review @valeros! I addressed all your comments and did a force push. |
Many thanks! |
This PR adds support for reel_board and reel_board_v2. The main platform for the reel_board is Zephyr. More information can be found in the documentation page of the reel board within the Zephyr project.
I tested the boards here locally and building, debugging and serial monitor works for me. Is there a way to make a baudrate of 115200 the default for this board? Zephyr uses 115200 for most of the examples.
reel_board and reel_board_v2 differ in the passive display being used. I created two different boards. Not sure if there is a more elegant way to go?