| 294 | */ |
| 295 | |
| 296 | int main() { |
| 297 | |
| 298 | // set up SysTick at 1ms resolution |
| 299 | |
| 300 | MillisecondTimer::initialise(); |
| 301 | |
| 302 | // we're using interrupts, initialise NVIC |
| 303 | |
| 304 | Nvic::initialise(); |
| 305 | |
| 306 | Timer7SegmentTest test; |
| 307 | test.run(); |
| 308 | |
| 309 | // not reached |
| 310 | return 0; |
| 311 | } |
nothing calls this directly
no test coverage detected