This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC1312R: Flashing FW via serial bootloader

Part Number: CC1312R
Other Parts Discussed in Thread: SYSCONFIG

Hello,

I set in the sysConfig: enable bootloader, enable backdoor DIO, trigger level of bootloader backdoor - active low

I used your example for Linux. I added control of appropriate GPIOs but the program does not continue when the

"Binary file size = 30286
Connecting:"

is shown. I am not sure about controlling the GPIO. the pseudo code (to show how I control them) is following:

// Set BOOTLOADER_BACKDOOR_PIN low
   controlGPIO(BOOTLOADER_BACKDOOR_PIN, 0);// I tried both - also PIN high

    // Set RESET_PIN low
    controlGPIO(RESET_PIN, 0);

    // wait a moment
    usleep(100000);// 100ms
    //release RESET
    controlGPIO(RESET_PIN, 1);