mirror of
https://github.com/JvanKatwijk/dabradio
synced 2025-10-06 00:02:49 +02:00
17 lines
661 B
C
17 lines
661 B
C
#pragma once
|
|
|
|
#include <inttypes.h>
|
|
|
|
const char * getASCTy (int16_t ASCTy);
|
|
const char * getDSCTy (int16_t DSCTy);
|
|
const char * getLanguage (int16_t language);
|
|
const char * getCountry (uint8_t ecc, uint8_t countryId);
|
|
const char * getProgramType_Not_NorthAmerica(int16_t programType);
|
|
const char * getProgramType_For_NorthAmerica(int16_t programType);
|
|
const char * getProgramType(bool, uint8_t interTabId, int16_t programType);
|
|
const char * getUserApplicationType(int16_t appType);
|
|
const char * getFECscheme(int16_t FEC_scheme);
|
|
const char * getProtectionLevel (bool shortForm, int16_t protLevel);
|
|
const char * getCodeRate (bool shortForm, int16_t protLevel);
|
|
|