-
Notifications
You must be signed in to change notification settings - Fork 416
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 nice!nano development board #137
Conversation
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.
VID/PID must be unique for each board.
src/boards/nice_nano/board.h
Outdated
// USB | ||
//--------------------------------------------------------------------+ | ||
#define USB_DESC_VID 0x239A | ||
#define USB_DESC_UF2_PID 0x0029 |
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.
the VID/PID is already used and we don't allow to reuse it anymore. If your board can also run circuitpython, you could apply for a set of VID/PID from Adafruit.
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.
I'm not familiar with Circuit Python. Is there any reason I wouldn't be able to use Circuit Python on this nRF52840 board? If not, could you direct me where to add support and apply for a VID/PID from Adafruit? Thanks!
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.
join circuitpyhon discords channel and ask for a donation of VID/PID to see if you are eligible for one.
@hathach I've added my unique PID. See: adafruit/circuitpython#3013 |
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.
look good
I've added the configuration for my nRF52840 based development board I've created. It will be available soon. There's some bare bones documentation available here that will get extended soon: https://docs.nicekeyboards.com/#/nice!nano/
Thanks for the work that's been put into this bootloader! It's been a joy to use.