We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
I want to sent and receive Turkish characters to led panel in Keil , but when I try to sent and receive with switch case, I receive this error:
switch(c)
{ case 'A':adr=97;break; //correct
case 'Ü':adr=98;break; //error character too large for enclosing character literal type.
break;
} return adr;
}
error: character too large for enclosing character literal type.
What can I solve this problem? I set 'Encode in UTF 8 without signature' setting for encoding because I can not see some Turkish character in Encode in ANSI setting.
Thanks in advance.