1.概述
本篇文章主要介紹如何使用e2studio對(duì)瑞薩進(jìn)行RTC配置,并且配置RTC時(shí)鐘日歷,產(chǎn)生1s的中斷讓串口打印實(shí)時(shí)數(shù)據(jù)。
RTC時(shí)鐘模塊是一個(gè)時(shí)間外設(shè),主要用于日期時(shí)間的存儲(chǔ)和控制,有別于一般MCU中的Timer,RTC時(shí)鐘有兩種計(jì)時(shí)模式,日期模式和計(jì)時(shí)模式,RTC常見的操作包括設(shè)置時(shí)間、設(shè)置定時(shí)鬧鈴、配置周期性中斷以及啟動(dòng)或停止操作。
2.硬件準(zhǔn)備
首先需要準(zhǔn)備一個(gè)開發(fā)板,這里我準(zhǔn)備的是芯片型號(hào) R7FA2L1AB2DFL 的開發(fā)板。
3.新建工程
4.工程模板
5.保存工程路徑
6.芯片配置
本文中使用R7FA2L1AB2DFL來(lái)進(jìn)行演示。
7
7.工程模板選擇
8.RTC配置
點(diǎn)擊Stacks->New Stack->Driver->Timers -> RTC Driver on r_rtc。
9.RTC屬性配置
10.設(shè)置E2STUDIO堆棧
11.e2studio的重定向printf設(shè)置
C++ 構(gòu)建->設(shè)置->GNU ARM Cross C Linker->Miscellaneous去掉Other linker flags中的 “--specs=rdimon.specs”
12.printf輸出重定向到串口
打印最常用的方法是printf,所以要解決的問(wèn)題是將printf的輸出重定向到串口,然后通過(guò)串口將數(shù)據(jù)發(fā)送出去。
注意一定要加上頭文件#include
#ifdef __GNUC__ //串口重定向
#define PUTCHAR_PROTOTYPE int __io_putchar(int ch)
#else
#define PUTCHAR_PROTOTYPE int fputc(int ch, FILE *f)
#endif
PUTCHAR_PROTOTYPE
{
err = R_SCI_UART_Write(&g_uart0_ctrl, (uint8_t *)&ch, 1);
if(FSP_SUCCESS != err) __BKPT();
while(uart_send_complete_flag == false){}
uart_send_complete_flag = false;
return ch;
}
int _write(int fd,char *pBuffer,int size)
{
for(int i=0;i;i++)>
13.R_RTC_Open()函數(shù)原型
故可以用R_RTC_Open()函數(shù)進(jìn)行初始化和開啟RTC。
/* Initialize the RTC module*/
err = R_RTC_Open(&g_rtc0_ctrl, &g_rtc0_cfg);
/* Handle any errors. This function should be defined by the user. */
assert(FSP_SUCCESS == err);
14.R_RTC_CalendarTimeSet()函數(shù)原型
故可以用R_RTC_CalendarTimeSet()函數(shù)進(jìn)行設(shè)置當(dāng)前日歷時(shí)間。
/* R_RTC_CalendarTimeSet must be called at least once to start the RTC */
R_RTC_CalendarTimeSet(&g_rtc0_ctrl, &set_time);
15.R_RTC_PeriodicIrqRateSet()函數(shù)原型
故可以用R_RTC_PeriodicIrqRateSet()函數(shù)進(jìn)行設(shè)置周期中斷。
/* Set the periodic interrupt rate to 1 second */
R_RTC_PeriodicIrqRateSet(&g_rtc0_ctrl, RTC_PERIODIC_IRQ_SELECT_1_SECOND);
16.R_RTC_CalendarAlarmSet()函數(shù)原型
故可以用R_RTC_CalendarAlarmSet()函數(shù)進(jìn)行設(shè)置鬧鐘。
R_RTC_CalendarAlarmSet(&g_rtc0_ctrl, &set_alarm_time1);
17.R_RTC_CalendarTimeGet()函數(shù)原型
故可以用R_RTC_CalendarTimeGet ()函數(shù)進(jìn)行獲取RTC計(jì)數(shù)時(shí)間。
R_RTC_CalendarTimeGet(&g_rtc0_ctrl, &get_time);//獲取RTC計(jì)數(shù)時(shí)間
18.設(shè)定時(shí)間
開啟RTC之后需要設(shè)定當(dāng)前的時(shí)間,可以通過(guò) R_RTC_CalendarTimeSet( &g_rtc0_ctrl , &set_time ) 設(shè)定時(shí)間,具體時(shí)間可以通過(guò)set_time進(jìn)行修改,設(shè)置如下所示。
/* rtc_time_t is an alias for the C Standard time.h struct 'tm' */
rtc_time_t set_time =
{
.tm_sec = 0, /* 秒,范圍從 0 到 59 */
.tm_min = 30, /* 分,范圍從 0 到 59 */
.tm_hour = 12, /* 小時(shí),范圍從 0 到 23*/
.tm_mday = 20, /* 一月中的第幾天,范圍從 1 到 31*/
.tm_mon = 11, /* 月份,范圍從 0 到 11*/
.tm_year = 121, /* 自 1900 起的年數(shù),2021為121*/
.tm_wday = 5, /* 一周中的第幾天,范圍從 0 到 6*/
// .tm_yday=0, /* 一年中的第幾天,范圍從 0 到 365*/
// .tm_isdst=0; /* 夏令時(shí)*/
};
19.設(shè)定周期性中斷
若要用RTC進(jìn)行固定延時(shí)中斷,可以用 R_RTC_PeriodicIrqRateSet ( rtc_ctrl_t *const p_ctrl , rtc_periodic_irq_select_t const rate ) 來(lái)進(jìn)行設(shè)置,例如設(shè)置1s,設(shè)置如下:
R_RTC_PeriodicIrqRateSet( &g_rtc0_ctrl , RTC_PERIODIC_IRQ_SELECT_1_SECOND );
每當(dāng)周期性中斷產(chǎn)生時(shí),可以觸發(fā)回調(diào)函數(shù)的事件RTC_EVENT_PERIODIC_IRQ。
20.設(shè)定日歷鬧鐘時(shí)間
開啟RTC之后可以設(shè)定需要日歷鬧鐘時(shí)間,可以通過(guò) R_RTC_CalendarAlarmSet( &g_rtc0_ctrl , &set_alarm_time )設(shè)定鬧鐘時(shí)間,具體時(shí)間可以通過(guò) set_alarm_time 進(jìn)行修改,設(shè)置如下所示。
下方例程只設(shè)置了 sec_match 為1,故每過(guò)一分鐘到5s的時(shí)候的時(shí)候都會(huì)觸發(fā)鬧鈴,若設(shè)置每天響鈴一次,則需要將 min_match 和 hour_match 都設(shè)置為1。
rtc_alarm_time_t set_alarm_time=
{
.time.tm_sec = 5,
.time.tm_sec = 5, /* 秒,范圍從 0 到 59 */
.time.tm_min = 30, /* 分,范圍從 0 到 59 */
.time.tm_hour = 12, /* 小時(shí),范圍從 0 到 23*/
.time.tm_mday = 20, /* 一月中的第幾天,范圍從 1 到 31*/
.time.tm_mon = 11, /* 月份,范圍從 0 到 11*/
.time.tm_year = 121, /* 自 1900 起的年數(shù),2021為121*/
.time.tm_wday = 5, /* 一周中的第幾天,范圍從 0 到 6*/
.sec_match = 1,
.min_match = 0,
.hour_match = 0,
.mday_match = 0,
.mon_match = 0,
.year_match = 0,
.dayofweek_match = 0,
};
21.演示效果
設(shè)置每過(guò)1s打印一次當(dāng)前時(shí)間,設(shè)置過(guò)1分鐘,在5秒時(shí)候鬧鈴。
22.完整代碼
#include "hal_data.h" #include FSP_CPP_HEADER void R_BSP_WarmStart(bsp_warm_start_event_t event); FSP_CPP_FOOTER fsp_err_t err = FSP_SUCCESS; volatile bool uart_send_complete_flag = false; void user_uart_callback (uart_callback_args_t * p_args) { if(p_args->event == UART_EVENT_TX_COMPLETE) { uart_send_complete_flag = true; } } #ifdef __GNUC__ //串口重定向 #define PUTCHAR_PROTOTYPE int __io_putchar(int ch) #else #define PUTCHAR_PROTOTYPE int fputc(int ch, FILE *f) #endif PUTCHAR_PROTOTYPE { err = R_SCI_UART_Write(&g_uart0_ctrl, (uint8_t *)&ch, 1); if(FSP_SUCCESS != err) __BKPT(); while(uart_send_complete_flag == false){} uart_send_complete_flag = false; return ch; } int _write(int fd,char *pBuffer,int size) { for(int i=0;ievent == RTC_EVENT_PERIODIC_IRQ) rtc_flag=1; else if(p_args->event == RTC_EVENT_ALARM_IRQ) rtc_alarm_flag=1; } /*******************************************************************************************************************//** * main() is generated by the RA Configuration editor and is used to generate threads if an RTOS is used. This function * is called by main() when no RTOS is used. **********************************************************************************************************************/ void hal_entry(void) { /* TODO: add your own code here */ err = R_SCI_UART_Open(&g_uart0_ctrl, &g_uart0_cfg); assert(FSP_SUCCESS == err); /* Initialize the RTC module*/ err = R_RTC_Open(&g_rtc0_ctrl, &g_rtc0_cfg); /* Handle any errors. This function should be defined by the user. */ assert(FSP_SUCCESS == err); /* R_RTC_CalendarTimeSet must be called at least once to start the RTC */ R_RTC_CalendarTimeSet(&g_rtc0_ctrl, &set_time); /* Set the periodic interrupt rate to 1 second */ R_RTC_PeriodicIrqRateSet(&g_rtc0_ctrl, RTC_PERIODIC_IRQ_SELECT_1_SECOND); R_RTC_CalendarAlarmSet(&g_rtc0_ctrl, &set_alarm_time); uint8_t rtc_second= 0; //秒 uint8_t rtc_minute =0; //分 uint8_t rtc_hour =0; //時(shí) uint8_t rtc_day =0; //日 uint8_t rtc_month =0; //月 uint16_t rtc_year =0; //年 uint8_t rtc_week =0; //周 rtc_time_t get_time; while(1) { if(rtc_flag) { R_RTC_CalendarTimeGet(&g_rtc0_ctrl, &get_time);//獲取RTC計(jì)數(shù)時(shí)間 rtc_flag=0; rtc_second=get_time.tm_sec;//秒 rtc_minute=get_time.tm_min;//分 rtc_hour=get_time.tm_hour;//時(shí) rtc_day=get_time.tm_mday;//日 rtc_month=get_time.tm_mon;//月 rtc_year=get_time.tm_year; //年 rtc_week=get_time.tm_wday;//周 printf(" %d y %d m %d d %d h %d m %d s %d w\n",rtc_year+1900,rtc_month,rtc_day,rtc_hour,rtc_minute,rtc_second,rtc_week); } if(rtc_alarm_flag) { rtc_alarm_flag=0; printf("/************************Alarm Clock********************************/\n"); } } #if BSP_TZ_SECURE_BUILD /* Enter non-secure code */ R_BSP_NonSecureEnter(); #endif };i++)>
原創(chuàng):By RA_Billy Xiao
原文標(biāo)題:瑞薩e2studio----RTC時(shí)鐘日歷&鬧鐘&周期性中斷
文章出處:【微信公眾號(hào):RA生態(tài)工作室】歡迎添加關(guān)注!文章轉(zhuǎn)載請(qǐng)注明出處。
-
mcu
+關(guān)注
關(guān)注
146文章
16922瀏覽量
349989 -
ARM
+關(guān)注
關(guān)注
134文章
9030瀏覽量
366539 -
嵌入式
+關(guān)注
關(guān)注
5060文章
18980瀏覽量
302239 -
開發(fā)板
+關(guān)注
關(guān)注
25文章
4913瀏覽量
97084
發(fā)布評(píng)論請(qǐng)先 登錄
相關(guān)推薦
評(píng)論