MCPcopy Create free account
hub / github.com/Barracuda09/SATPI / fec_to_string

Method fec_to_string

src/StringConverter.cpp:412–441  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

410}
411
412const char *StringConverter::fec_to_string(int fec) {
413 switch (fec) {
414 case FEC_1_2:
415 return "12";
416 case FEC_2_3:
417 return "23";
418 case FEC_3_4:
419 return "34";
420 case FEC_3_5:
421 return "35";
422 case FEC_4_5:
423 return "45";
424 case FEC_5_6:
425 return "56";
426 case FEC_6_7:
427 return "67";
428 case FEC_7_8:
429 return "78";
430 case FEC_8_9:
431 return "89";
432 case FEC_9_10:
433 return "910";
434 case FEC_AUTO:
435 return " ";
436 case FEC_NONE:
437 return " ";
438 default:
439 return "UNKNOWN FEC";
440 }
441}
442
443const char *StringConverter::delsys_to_string(input::InputSystem system) {
444 switch (system) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected