Blame view

RIOT/tests/periph_rtc/main.c 3.47 KB
fb11e647   vrobic   reseau statique a...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
  /*
   * Copyright (C) 2015 Lari Lehtomäki
   *
   * This file is subject to the terms and conditions of the GNU Lesser General
   * Public License v2.1. See the file LICENSE in the top level directory for more
   * details.
   */
  
  /**
   * @ingroup tests
   * @{
   *
   * @file
   * @brief       Test for low-level Real Time clock drivers
   *
   * This test will initialize the real-time timer and trigger an alarm printing
   * 'Hello' every 10 seconds
   *
   * @author      Lari Lehtomäki <lari@lehtomaki.fi>
   *
   * @}
   */
  
  #include <stdio.h>
  #include <time.h>
  
  #include "periph_conf.h"
  #include "periph/rtc.h"
  #include "xtimer.h"
  
  #define TM_YEAR_OFFSET              (1900)
  
  #if RTC_NUMOF < 1
  #error "No RTC found. See the board specific periph_conf.h."
  #endif
  
  void cb(void *arg)
  {
      (void)arg;
  
      puts("Alarm!");
  
      struct tm time;
      rtc_get_alarm(&time);
      time.tm_sec  += 10;
      if ( time.tm_sec > 60 )
          rtc_clear_alarm();
      rtc_set_alarm(&time, cb, 0);
  }
  
  
  int main(void)
  {
      puts("\nRIOT RTC low-level driver test");
      puts("This test will display 'Alarm' in 10 seconds\n");
  
      puts("Initializing the RTC driver");
      rtc_init();
  
      struct tm time;
      time.tm_year = 2011 - TM_YEAR_OFFSET; // years are counted from 1900
      time.tm_mon  = 11; // 0 = January, 11 = December
      time.tm_mday = 13;
      time.tm_hour = 14;
      time.tm_min  = 15;
      time.tm_sec  = 15;
  
      printf("Setting clock to %04d-%02d-%02d %02d:%02d:%02d\n",
                                                      time.tm_year + TM_YEAR_OFFSET,
                                                      time.tm_mon + 1,
                                                      time.tm_mday,
                                                      time.tm_hour,
                                                      time.tm_min,
                                                      time.tm_sec);
      rtc_set_time(&time);
  
      xtimer_usleep(100);
  
      rtc_get_time(&time);
      printf("Clock set to %04d-%02d-%02d %02d:%02d:%02d\n",
                                                      time.tm_year + TM_YEAR_OFFSET,
                                                      time.tm_mon + 1,
                                                      time.tm_mday,
                                                      time.tm_hour,
                                                      time.tm_min,
                                                      time.tm_sec);
  
  
      time.tm_sec  += 10;
  
      printf("Setting alarm to %04d-%02d-%02d %02d:%02d:%02d\n",
                                                      time.tm_year + TM_YEAR_OFFSET,
                                                      time.tm_mon + 1,
                                                      time.tm_mday,
                                                      time.tm_hour,
                                                      time.tm_min,
                                                      time.tm_sec);
      rtc_set_alarm(&time, cb, 0);
  
      xtimer_usleep(100);
  
      rtc_get_alarm(&time);
      printf("Alarm set to %04d-%02d-%02d %02d:%02d:%02d\n",
                                                      time.tm_year + TM_YEAR_OFFSET,
                                                      time.tm_mon + 1,
                                                      time.tm_mday,
                                                      time.tm_hour,
                                                      time.tm_min,
                                                      time.tm_sec);
  
      puts("The alarm should trigger every 10 seconds for 4 times.");
      return 0;
  }