您好,登錄后才能下訂單哦!
這篇文章主要介紹“Linux應用層系統時間寫入RTC時鐘的辦法”,在日常操作中,相信很多人在Linux應用層系統時間寫入RTC時鐘的辦法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Linux應用層系統時間寫入RTC時鐘的辦法”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
一、寫入時間
1、預備知識:
a、mktime
頭文件:#include <time.h>
函數:time_t mktime(struct tm *timeptr)
函數說明:mktime()用來將timeptr所指的tm結構體數據換成從公元1970年1月1日0時0分0 秒算起至今的本地時間所經過的秒數。
返回值:返回經過的秒數。當發生錯誤的時候,返回-1。
b、settimeofday
頭文件:#include <sys/time.h>
#include <unistd.h>
函數:int settimeofday(const struct timeval *tv,const struct timezone *tz)
函數說明:settimeofday()會把目前時間設成由tv所指的結構體信息,當地時區信息則設成tz所指的結構體。
返回值:只有root權限才能使用此函數修改時間。成功則返回0,失敗返回-1,錯誤代碼存于errno。
2、實踐:
通過mktime和settimeofday配合使用,即可完成時間的寫入。
3、代碼如下:
#include <stdio.h>#include <time.h>#include <sys/time.h>#include <unistd.h>#include <stdlib.h>#include <bits/types.h>#include <linux/rtc.h>struct my_timeval { __time_t tv_sec; __suseconds_t tv_usec; };/************************************************* *函數名 : System_SetTime *功能 : 寫入系統時間 *使用方法 : char* dt = "2016-04-15 21:00:00"; System_SetTime(dt); **************************************************/int System_SetTime(char* dt) {struct rtc_time tm;struct tm _tm;struct my_timeval tv; time_t timep;sscanf(dt,"%d-%d-%d %d:%d:%d",&tm.tm_year,&tm.tm_mon,&tm.tm_mday,&tm.tm_hour,&tm.tm_min,&tm.tm_sec); _tm.tm_sec = tm.tm_sec; _tm.tm_min = tm.tm_min; _tm.tm_hour = tm.tm_hour; _tm.tm_mday = tm.tm_mday; _tm.tm_mon = tm.tm_mon - 1; _tm.tm_year = tm.tm_year - 1900; timep = mktime(&_tm); tv.tv_sec = timep; tv.tv_usec = 0;if(settimeofday(&tv, (struct timezone *) 0) < 0) {printf("Set system datetime error!\n");return -1; } return 0; }void main(void) {char *dt = "2016-4-15 21:00:00"; System_SetTime(dt); }
4、測試結果:
二、保存時間
從上面的測試結果可以看出,可以正常寫入系統時間了。我起初也以為這樣就可以了,但是我發現,這樣是不行的。因為一旦我重新啟動開發板,系統時間又會回復到原來的時間。想想也是,我們只是寫入了系統時間,沒有將系統時間同步到硬件時間,這樣系統每次重啟讀取的硬件時間是沒有改變的,啟動后得到的系統時間CST = UTC + 8,還是換來的系統時間。那怎樣將我們設置的系統時間同步到硬件時間呢?我們知道在終端里,可以通過hwclock –systohc將系統時間同步到硬件時間上去,在應用層怎么實現呢?我不知道有沒有其他好的解決辦法,我想出來的辦法就是在應用層創建子進程,在子進程里調用腳本文件,腳本里的指令就是hwclock –systohc。這樣就完成了同步。當然如果有更簡單和更合適的方法,歡迎指導、交流。說了這么多,言歸正傳。
1、預備知識:
a、fork創建子進程,代碼如下:
/************************** *功能:創建子進程fork()測試 *時間:2016-4-15 *作者:Jack Cui ***************************/#include <unistd.h> #include <stdio.h> int main (void) { pid_t fpid; //fpid表示fork函數返回的值int count=0; fpid=fork(); if (fpid < 0) //創建子進程失敗printf("error\n"); else if (fpid == 0) { printf("I am the child process,my process id is %d\n",getpid()); count++; }else { printf("I am the parent process,my process id is %d\n",getpid()); count++; } printf("count = %d\n",count);return 0; }
b、fork測試程序結果顯示:
c、execve()應用層調用腳本文件:
頭文件:#include <unistd.h>
函數:int execve(const char * filename, char * const argv[], char * const envp[]);
函數說明: execve()用來執行參數filename 字符串所代表的文件路徑, 第二個參數系利用數組指針來傳遞給執行文件, 最后一個參數則為傳遞給執行文件的新環境變量數組。
返回值:如果執行成功則函數不會返回, 執行失敗則直接返回-1, 失敗原因存于errno 中。
d、execve()測試代碼:
/************************** *功能:測試execve *時間:2016-4-15 *作者:Jack Cui ***************************/#include <stdio.h> //perror#include <stdlib.h> //EXIT_SUCCESS EXIT_FAILURE#include <unistd.h> //execvevoid main(void) {char * args[] = { "/home/nfsroot/hwclock.sh", NULL};if(-1 == (execve("/home/nfsroot/hwclock.sh",args,NULL))) { perror("execve"); exit(EXIT_FAILURE); } exit(EXIT_SUCCESS); }
e、腳本內容:
f、execve測試結果:
可以看出execve使用正常,我們將腳本內容改為hwclock –systohc就可以實現將系統時間同步到硬件時間了。
三、整體代碼如下:
/****************************************** *功能:Linux應用層系統時間寫入RTC時鐘的方法 *時間:2016-4-15 *作者:Jack Cui *******************************************/#include <stdio.h>#include <time.h>#include <sys/time.h>#include <unistd.h>#include <stdlib.h>#include <bits/types.h>#include <linux/rtc.h>struct my_timeval { __time_t tv_sec; __suseconds_t tv_usec; };/************************************************* *函數名 : System_SetTime *功能 : 寫入系統時間 *使用方法 : char* dt = "2016-04-15 21:00:00"; System_SetTime(dt); **************************************************/int System_SetTime(char* dt) {struct rtc_time tm;struct tm _tm;struct my_timeval tv; time_t timep;sscanf(dt,"%d-%d-%d %d:%d:%d",&tm.tm_year,&tm.tm_mon,&tm.tm_mday,&tm.tm_hour,&tm.tm_min,&tm.tm_sec); _tm.tm_sec = tm.tm_sec; _tm.tm_min = tm.tm_min; _tm.tm_hour = tm.tm_hour; _tm.tm_mday = tm.tm_mday; _tm.tm_mon = tm.tm_mon - 1; _tm.tm_year = tm.tm_year - 1900; timep = mktime(&_tm); tv.tv_sec = timep; tv.tv_usec = 0;if(settimeofday(&tv, (struct timezone *) 0) < 0) {printf("Set system datetime error!\n");return -1; } return 0; }void main(void) {char *dt = "2016-4-15 21:00:00"; pid_t fpid; //fpid表示fork函數返回的值fpid=fork(); if (fpid < 0) //創建子進程失敗printf("error\n"); else if (fpid == 0) {char * args[] = { "/home/nfsroot/hwclock.sh", NULL};if(-1 == (execve("/home/nfsroot/hwclock.sh",args,NULL))) { perror("execve");exit(EXIT_FAILURE); }exit(EXIT_SUCCESS); }else{ System_SetTime(dt); }return 0; }
四、最終結果顯示:
1、腳本內容:
2、測試結果:
這樣我們重新啟動開發板,系統時間不會變,設置成功~!
到此,關于“Linux應用層系統時間寫入RTC時鐘的辦法”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。