Hi,
how is it possible to add Cyrillic scripts in one of my c-files (working with mdk version 3.4)?
const char text_cyrillic = {"Cyrillic script"};
best regards Arne
In theory, you should use the compiler's command line option --locale=lang_country: www.keil.com/.../armccref_chdicaie.htm This should set the expected text encoding of your source files. In practice, I'm not sure this option is supported on Windows in any meaningful way. Perhaps, you should try it.
Regards, - mike