Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
main.cpp
00001 #include "mbed.h" 00002 #include "GetTickCount/GetTickCount.h" 00003 00004 int main() { 00005 printf("GetTickCount() Demo App\r\n"); 00006 printf("Timer resolution is 10ms.\r\n"); 00007 printf("Sample will show the system timer every second."); 00008 00009 GetTickCount_Start(); 00010 while(1) { 00011 00012 printf("Ticks: %d\r\n", GetTickCount()); 00013 wait(1); 00014 } 00015 }
Generated on Wed Jul 13 2022 05:21:14 by
1.7.2