BE_VOILIER/ProjetInitial/Services/Source/RTC.c
2025-12-17 00:11:41 +01:00

13 lines
187 B
C
Executable file

#include "RTC.h"
initRTC() {
RTC -> PRLL = 0x7FFF; // Obtenir un période de 1 seconde
RTC -> PRLH = 0xFFFF; // Le plus grand possible
}
int getTime() {
return(RTC -> PRLH);
}