Other Parts Discussed in Thread: MSP-EXP430FR5739, MSP430FR5739, MSP-EXP430F5529LP
Hello
i have a problem with the RTC config, the RTC doesn't run.
// Configure RTC
RTCCTL0 = RTCTEVIE; //Real-time clock time event interrupt enable.
RTCCTL1 |= RTCBCD + RTCHOLD + RTCTEV_0;
// RTC disable, BCD mode,
// alarm every Minute
// Init time
RTCSEC = 0x00; // Set Seconds
RTCMIN = 0x58; // Set Minutes
RTCHOUR = 0x08; // Set Hours
// Init date
RTCDOW = 0x02; // Set DOW
RTCDAY = 0x23; // Set Day
RTCMON = 0x08; // Set Month
RTCYEAR = 0x2005; // Set Year
RTCCTL1 &= ~RTCHOLD; // Enable RTC
is a sample RTC code for FR Controllers available?
Greetings from Germany
Ralf N.