| 248 | */ |
| 249 | |
| 250 | int main() { |
| 251 | |
| 252 | // interrupts |
| 253 | Nvic::initialise(); |
| 254 | |
| 255 | // set up SysTick at 1ms resolution |
| 256 | MillisecondTimer::initialise(); |
| 257 | |
| 258 | NetHttpClientTest test; |
| 259 | test.run(); |
| 260 | |
| 261 | // not reached |
| 262 | return 0; |
| 263 | } |
nothing calls this directly
no test coverage detected