| 5 | #include <iomanip> |
| 6 | |
| 7 | ModemFSK::ModemFSK() : ModemDigital() { |
| 8 | // DMR defaults? |
| 9 | bps = 1; |
| 10 | sps = 9600; |
| 11 | bw = 0.45f; |
| 12 | outStream << std::hex; |
| 13 | } |
| 14 | |
| 15 | ModemBase *ModemFSK::factory() { |
| 16 | return new ModemFSK; |
nothing calls this directly
no outgoing calls
no test coverage detected