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.

CCS/CC3220SF: cc3220sf

Part Number: CC3220SF


Tool/software: Code Composer Studio

Hi,

There is a reason that the CPU will stuck in case the Power Supply cannot provide by the current consumption?

what register can i save to know the reason for it?

  • Hi,

    Please see datasheet chapter 5.8 (Brownoutand BlackoutConditions).

    Restart reason you can read by API PRCMSysResetCauseGet() where:

    #define PRCM_POWER_ON             0x00000000
    #define PRCM_LPDS_EXIT            0x00000001
    #define PRCM_CORE_RESET           0x00000003
    #define PRCM_MCU_RESET            0x00000004
    #define PRCM_WDT_RESET            0x00000005
    #define PRCM_SOC_RESET            0x00000006
    #define PRCM_HIB_EXIT             0x00000007

    Jan