-
Notifications
You must be signed in to change notification settings - Fork 187
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 applet for programming/reading TI/Chipcon 8051 based radios: CC111x, CC251x, CC253x, & CC254x #185
base: main
Are you sure you want to change the base?
Conversation
…CC111x and CC25x radio SoCs. Tested on CC2510-2511DK_Dongle R1.2 Reads/writes code and lock bits 'Should' work on unbanked CC111x, CC251x & CC243x parts. Might work on banked CC243x parts (F64 & F128)
Thanks for the PR. It will likely take a while to merge this because the new applet doesn't quite follow the conventions in the other applets, and I'd like all of the in-tree applets to be written in the same style. |
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 did the first round of review, this is just for Glasgow-side logic. I have one of the supported devices, which I'll dig out later and comment on the target-side logic.
…ak tested for ~2hrs.
…a part with debug lock set.
Thanks for the comments - I worked through them, and hope the changes are appropriate. |
Waiting to get hold of a cc2430 to check bank switching. |
…let-program-chipcon
…let-program-chipcon
Hurrah - works on with the newer banked Zigbee/BLE parts 253x and 254x |
…let-program-chipcon
…let-program-chipcon
FInally got a CC2430 module and tested ok. |
…let-program-chipcon
…let-program-chipcon
…let-program-chipcon
…let-program-chipcon
…let-program-chipcon
…let-program-chipcon
…let-program-chipcon
…t-program-chipcon
…t-program-chipcon
…t-program-chipcon
…t-program-chipcon
Co-authored-by: Greg Davill <[email protected]>
Just some comments/observations since I've been using this with a CC2530. Programming with fast clockInitially wasn't able to run the programmer very fast, trying anything over 200kHz seemed to not find the IC. Confirmed connections to PCB etc. TI datasheet states that 12MHz clock is supported. The CC parts send 2 pulses while reset is inactive to enter debug mode. My circuit has an RC with a 100nF capacitor on the reset pin, so the short 5us wait between activating and sending pulses didn't provide enough time to fully pull RESET LOW. Programming a sleeping partIf my CC2530 target is in deep sleep mode, it's internal 1.8V regulator is off, and it's running on the Sleep Timer clocked by an external 32kHz crystal. I'm not able to program the device on the first try. If I run the tool again while the chip is active in it's startup code, then it's found and programming works. Not sure if there needs to be a slightly longer wait, potentially for the 1.8V regulator to start up? TI's docs don't mention anything special about entering debug mode while the target is asleep. I tried an extra initial 1ms Reset pulse, 1ms wait, before standard entry procedure, this works sometimes ~ Edit: ~ # Generate entry signal - two clocks while reset held
await self._send(Operation.RESET_ON, [], 0)
await self._delay_ms(1)
await self._send(Operation.DEBUG_ENTRY, [], 0)
await self._delay_us(100)
await self._send(Operation.RESET_OFF, [], 0)
await self._delay_us(100)
await self.lower.flush() |
Thanks - yeah, looks like resets need a bit more TLC. I’ll dig out the other devices I have and explore. |
Tested on CC2510-2511DK_Dongle R1.2.
Reads/writes code and lock bits.
'Should' work on unbanked CC111x, CC251x & CC243x parts.
Might work on banked CC243x parts (F64 & F128).