Hi.
I'm configuring the RTC module of TIVAC129 like:
uint32_t ui32HIBCtl = 0;
GPIOPinConfigure(GPIO_PP3_RTCCLK);
GPIODirModeSet(GPIO_PORTP_BASE, GPIO_PIN_3, GPIO_DIR_MODE_HW);
GPIOPadConfigSet(GPIO_PORTP_BASE, GPIO_PIN_3, GPIO_STRENGTH_8MA, GPIO_PIN_TYPE_STD);
SysCtlPeripheralEnable(SYSCTL_PERIPH_HIBERNATE);
ui32HIBCtl = HWREG(HIB_CTL);
ui32HIBCtl |= HIB_CTL_OSCBYP;
ui32HIBCtl |= HIB_CTL_CLK32EN;
HWREG(HIB_CTL) = ui32HIBCtl;
SystemDelayMilliSecond( 10 );
HibernateRTCEnable();
HibernateCounterMode(HIBERNATE_COUNTER_24HR);
// Configure HIBCC for RTCOSC available, serve per buttare fuori il monitor della frequenza di oscillazione
HWREG(HIB_CC) = HIB_CC_SYSCLKEN;
This configuration is because I'm using an external source 32768 Hz cristal, as per pdf manual of TivaC129 TM4C129XNCZAD paragraph 7.3 I know that for external source must be:
CLK32EN=1, OSCSEL=0, OSCBYP=1
The schematics is as below:
The issue is that I don't see any signal on Pin C12 (PP3).
Regards,
Marco Crivellari
