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
I think the problem is that mdk version 3.4 do not support cyrillic scripts... I'm able to write any text in word but if I paste them to uvision the whole text changed to a lot of question marks...
Is it not possible to add utf-8 support for keil?
the homepage should include
<META name=description content="Ð'еÑплатный руÑÑкий и украинÑкий
the real text - not the ascii code...
Please I need hints to get this result
at the moment the webpage contain the real ascii code for the cyrillic scripts (charset is utf-8)
One small example:
<div class='headings'>Ð'б</div>
How is it possible using MDK uvision to see the real cyrillic scripts?
It would be perfect to add cyrillic scripts within my code in uvision without using this ascii codes...
I'm writing a homepage (webserver running at an LPC controller), which should be available in English, Cyrillic and German.
If the device does support it, then it's just a question of writing your 'C' code in accordance with the device's requirements... Of course the client (internet explorer etc.) must be able to support these languages.
const char test[LangNbr][200] = { {"German"}, {"English"}, {"Cyrillic"} };
One way which will work but need a lot of space is to write all cyrillic characters in ascii mode (б etc.). Do you have other suggestion?
Isn't it more a question of whether the output device concerned supports Cyrillic scripts?
If the device does support it, then it's just a question of writing your 'C' code in accordance with the device's requirements...
Or am I missing the point?
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
View all questions in Keil forum