Replace the existing Apache 2.0 boilerplate header with an SPDX tag throughout the zephyr code tree. This patch was generated via a script run over the master branch. Also updated doc/porting/application.rst that had a dependency on line numbers in a literal include. Manually updated subsys/logging/sys_log.c that had a malformed header in the original file. Also cleanup several cases that already had a SPDX tag and we either got a duplicate or missed updating. Jira: ZEP-1457 Change-Id: I6131a1d4ee0e58f5b938300c2d2fc77d2e69572c Signed-off-by: David B. Kinder <david.b.kinder@intel.com> Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
44 lines
711 B
C
44 lines
711 B
C
/*
|
|
* Copyright (c) 2015 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr.h>
|
|
|
|
#include <device.h>
|
|
#include <rtc.h>
|
|
#include <misc/printk.h>
|
|
|
|
#define ALARM (RTC_ALARM_SECOND)
|
|
|
|
void test_rtc_interrupt_fn(struct device *rtc_dev)
|
|
{
|
|
uint32_t now = rtc_read(rtc_dev);
|
|
|
|
printk("Alarm\n");
|
|
rtc_set_alarm(rtc_dev, now + ALARM);
|
|
}
|
|
|
|
void main(void)
|
|
{
|
|
struct rtc_config config;
|
|
struct device *rtc_dev;
|
|
|
|
printk("Test RTC driver\n");
|
|
rtc_dev = device_get_binding("RTC_0");
|
|
|
|
config.init_val = 0;
|
|
config.alarm_enable = 1;
|
|
config.alarm_val = ALARM;
|
|
config.cb_fn = test_rtc_interrupt_fn;
|
|
|
|
rtc_enable(rtc_dev);
|
|
|
|
rtc_set_config(rtc_dev, &config);
|
|
|
|
while (1) {
|
|
/* do nothing */
|
|
}
|
|
}
|