cc2640的RTC
时间:10-02
整理:3721RD
点击:
CC2640到底怎么设置RTC的时间。实实在在的RTC的时间设置,2个问题需要解决:1.设置时间;2RTC定时中断。
我的工程可能会不断重启所以只有RTC能准确记录时间和中断信息。
哪里有资料?
关于RTC的相关资料,您可以参考 C:\TI\tirtos_simplelink_2_13_00_06\products\cc26xxware_2_21_01_15600\doc\driverlib\group__aonrtc__api.html
如果您已经安装了tirtos_simplelink_2_13_00_06或更新版本的话
您现在需要不断重启您的设备?
技术手册上说可以复位到任何数值,软件怎么设置? 我需要设置日历
void
AONRTCIntHandler(
void
)
{
AONRTCEventClear(AON_RTC_CH1);
//Sync not needed on RTC clear but must wait a few instructions
GPIOPinWrite(1 << IO_LED2,1);
captureVal[captureCount++] = AONRTCCaptureValueCh1Get();
if
(captureCount == CAPTURE_SIZE) {
captureCount = 0;
}
GPIOPinWrite(1 << IO_LED2, 0);
}
你好。你贴一段代码没看明白。刷存在感? 一个中断,然后捕获了一个数值?