| 92 | } // namespace |
| 93 | |
| 94 | void init() |
| 95 | { |
| 96 | #if DEBUG_BUILD |
| 97 | Serial.begin(COM_SPEED_SERIAL); |
| 98 | |
| 99 | Serial.systemDebugOutput(true); |
| 100 | debug_i("\n\n********************************************************\n" |
| 101 | "Hello\n"); |
| 102 | #endif |
| 103 | |
| 104 | fwfs_mount(); |
| 105 | |
| 106 | printCars(); |
| 107 | printClassics(Resource::classics_json, Format::json); |
| 108 | printClassics(Resource::classics_xml, Format::xml); |
| 109 | } |
nothing calls this directly
no test coverage detected