| 176 | */ |
| 177 | |
| 178 | int main() { |
| 179 | |
| 180 | // interrupts |
| 181 | Nvic::initialise(); |
| 182 | |
| 183 | // set up SysTick at 1ms resolution |
| 184 | MillisecondTimer::initialise(); |
| 185 | |
| 186 | NetHttpServerTest test; |
| 187 | test.run(); |
| 188 | |
| 189 | // not reached |
| 190 | return 0; |
| 191 | } |
nothing calls this directly
no test coverage detected