| 20 | } |
| 21 | |
| 22 | const char* platformName(RadioPlatform p) |
| 23 | { |
| 24 | switch (p) { |
| 25 | case RadioPlatform::Unknown: return "Unknown"; |
| 26 | case RadioPlatform::Microburst: return "Microburst"; |
| 27 | case RadioPlatform::DeepEddy: return "DeepEddy"; |
| 28 | case RadioPlatform::BigBend: return "BigBend"; |
| 29 | case RadioPlatform::DragonFire: return "DragonFire"; |
| 30 | } |
| 31 | return "?"; |
| 32 | } |
| 33 | |
| 34 | } // namespace |
| 35 |
no outgoing calls
no test coverage detected