CuVoodoo STM32F1 firmware template
rtc_dcf77.h
Go to the documentation of this file.
1 /* This program is free software: you can redistribute it and/or modify
2  * it under the terms of the GNU General Public License as published by
3  * the Free Software Foundation, either version 3 of the License, or
4  * (at your option) any later version.
5  *
6  * This program is distributed in the hope that it will be useful,
7  * but WITHOUT ANY WARRANTY; without even the implied warranty of
8  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9  * GNU General Public License for more details.
10  *
11  * You should have received a copy of the GNU General Public License
12  * along with this program. If not, see <http://www.gnu.org/licenses/>.
13  *
14  */
21 #pragma once
22 
24 extern volatile bool rtc_dcf77_time_flag;
25 
27 extern struct rtc_dcf77_time_t {
28  bool valid;
29  uint8_t milliseconds;
30  uint8_t seconds;
31  uint8_t minutes;
32  uint8_t hours;
33  uint8_t day;
34  uint8_t weekday;
35  uint8_t month;
36  uint8_t year;
38 
40 void rtc_dcf77_setup(void);
44 void rtc_dcf77_on(void);
46 void rtc_dcf77_off(void);
void rtc_dcf77_on(void)
switch on DCF77 time receiver module
Definition: rtc_dcf77.c:93
volatile bool rtc_dcf77_time_flag
set when time information has been received
Definition: rtc_dcf77.c:52
uint8_t minutes
minutes (00-49)
Definition: rtc_dcf77.h:31
void rtc_dcf77_off(void)
switch off DCF77 time receiver module
Definition: rtc_dcf77.c:107
void rtc_dcf77_setup(void)
setup DCF77 time receiver module
Definition: rtc_dcf77.c:70
uint8_t month
month (01-12)
Definition: rtc_dcf77.h:35
decoded DCF77 time received
Definition: rtc_dcf77.h:27
struct rtc_dcf77_time_t rtc_dcf77_time
the received DCF77 frame bits
Definition: rtc_dcf77.c:53
uint8_t seconds
seconds (always 0)
Definition: rtc_dcf77.h:30
uint8_t hours
hours (00-23)
Definition: rtc_dcf77.h:32
uint8_t weekday
day of the week (1-7=Monday-Sunday)
Definition: rtc_dcf77.h:34
bool valid
if the time is valid
Definition: rtc_dcf77.h:28
uint8_t year
year within century (00-99)
Definition: rtc_dcf77.h:36
uint8_t day
day of the month (01-31)
Definition: rtc_dcf77.h:33
uint8_t milliseconds
milliseconds (00-99)
Definition: rtc_dcf77.h:29