Search Code
About GetTickCount

Published 25 Jan 2010.

Last change message: N/A

Import this program

GetTickCount

Published 25 Jan 2010, by   user Michael Wei   tag No tags
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 }