예제 #1
0
int main() {

  // set up SysTick at 1ms resolution
  MillisecondTimer::initialise();

  RtcTest test;
  test.run();

  // not reached
  return 0;
}
예제 #2
0
파일: rtc_f0.cpp 프로젝트: ADTL/stm32plus
int main() {

  // set up SysTick at 1ms resolution

  MillisecondTimer::initialise();

  // we're using interrupts, initialise NVIC

  Nvic::initialise();

  RtcTest test;
  test.run();

  // not reached
  return 0;
}