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.
millis.cpp
00001 #include "mbed.h" 00002 #include "millis.h" 00003 00004 volatile unsigned long _millis; 00005 00006 void millisStart(void) { 00007 SysTick_Config(SystemCoreClock / 1000); 00008 } 00009 00010 extern "C" void SysTick_Handler(void) { 00011 _millis++; 00012 } 00013 00014 unsigned long millis(void) { 00015 return _millis; 00016 }
Generated on Thu Jul 14 2022 21:27:07 by
1.7.2