Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers GetTickCount.cpp Source File

GetTickCount.cpp

00001 volatile unsigned int TickCount;
00002 
00003 extern "C" void SysTick_Handler (void) {
00004     TickCount+= 10;
00005 }