Work done on ASCII converter. (not ready yet!)

List needs to be filled.
This commit is contained in:
Sjef Verhoeven PE5PVB
2023-06-13 23:15:42 +02:00
parent 62e9b7a275
commit 91ab8df421
3 changed files with 48 additions and 1 deletions
+5 -1
View File
@@ -88,6 +88,8 @@ typedef struct _rds_ {
byte stationTypeCode;
byte MS;
char stationName[9];
wchar_t PStext[9] = L"";
String RDSPS;
char stationText[65];
char stationType[17];
char musicTitle[48];
@@ -172,6 +174,8 @@ class TEF6686 {
bool mute;
private:
void RDScharConverter(const char* input, wchar_t* output, size_t size);
String convertToUTF8(const wchar_t* input);
uint16_t rdsTimeOut = 32768;
uint8_t ps_process;
uint8_t rt_process;
@@ -184,4 +188,4 @@ class TEF6686 {
byte rt_timer;
byte offsetold;
char stationTextBuffer[65];
};
};