Part Number: TMS320C6748
Tool/software: Code Composer Studio
Please explain the details of these functions.
I am very new to CCS and help me please.
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.
Part Number: TMS320C6748
Tool/software: Code Composer Studio
Please explain the details of these functions.
I am very new to CCS and help me please.
Hello,
PINMUX0_RTC_ALARM_ENABLE is the bit mask for selecting the RTC alarm in the PINMUX0 register. In other words, when PINMUX0_RTC_ALARM_ENABLE is written to the register, ALARM is selected in the pinmux configuration. PINMUX0_RTC_ALARM_ENABLE is most likely 0x20000000 as seen below.
You can verify this by finding the value of SYSCFG_PINMUX0_PINMUX0_31_28_ALARM and left-shifting it with SYSCFG_PINMUX0_PINMUX0_31_28_SHIFT as done in the code. The same concept applies to PINMUX19_RTCK_ENABLE.