-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Initial ports for u-blox C029/EVK-ODIN-W2 and HI2110. #2610
Conversation
… the NBIOT chip), SARA_NBIOT (the NBIOT module that contains the HI2110 chip) and SARA_NBIOT_EVK (the board that carries SARA_NBIOT). The code compiles and runs but there are know bugs in that us_ticker stops working correctly after about 10 seconds and it doesn't yet receive characters correctly.
… was because the disable interrupt and clear interrupt calls were disabling and clearing the timer interrupt but in fact, because the interrupt is needed to manage timer overflow in our case, it should not be disabled/cleared. Instead these calls now simply stop the user interrupts from occurring, which is all they need to do.
This reverts commit 40e2f36.
Something to note: The targets in this PR won't be built/tested in CI until the |
Anything more we should do to get this tested in CI(UBLOX_C029 target only) and integrated? |
I did a brief check to make sure none of the changes looked out of place and this looked ok. @0xc0170 Should probably take a look at this too. It looks like this has merge conflicts as well, so it will need to be rebased before it gets merged. |
@andreaslarssonublox needs a rebase |
@@ -1163,14 +1163,16 @@ | |||
"UBLOX_C029": { | |||
"supported_form_factors": ["ARDUINO"], | |||
"core": "Cortex-M4F", | |||
"default_toolchain": "uARM", | |||
"default_toolchain": "GCC_ARM", |
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.
it should be either ARM
No description provided.