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

nRF52833 support WIP #698

Closed
wants to merge 5 commits into from

Conversation

IanBallinger
Copy link

Runs on device hardware (not yet tested on pca10100). Flashing with nrfjprog 10.12.1 manually installed into BSP.

Current issue: Bluefruit.begin() breaks when bond_init() calls InternalFS functions.

Implementation borrows from work done by @LokiMetaSmith in PR #659.

@jpconstantineau
Copy link
Contributor

I am really interested in this. I made sure that CircuitPython support was working fine for the 833 but have been hoping for Arduino support for the 833 to come. Debugging on CP pointed me to update the bootloader SD. The UF2 device family is also different with the 833 (see bootloader repo)

Couple of comments:
1 - are the bootloader files the updated ones?
2 - will this support the 7.x SD that's in the newly updated bootloader? (the 6.x SD isn't supported by the 833)

@IanBallinger
Copy link
Author

IanBallinger commented Jan 27, 2022

Per the compatibility matrix, the nRF52833 requires S140 7.0.1 or later. The current bootloader included in this fork was built with S140 6.1.1 for compatibility with the rest of the core since I think some function signatures change between versions (but I could be wrong). A softdevice update would probably be the last major thing needed to get board support working.

@@ -0,0 +1,155 @@
/*
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

file has not been double checked, it just follows the same structure as the other dev kit variants.

@@ -0,0 +1,55 @@
/*
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

file has not been double checked, it just follows the same structure as the other dev kit variants.

@@ -26,7 +26,7 @@
#define NRFX_TIMER2_ENABLED 0
#define NRFX_TIMER3_ENABLED 0

#ifdef NRF52840_XXAA
#if defined(NRF52840_XXAA)
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the nRF52833 does not have a QSPI peripheral

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants