This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

russian comms

Hi, my uKeil 4 does not eat russian comms. How can I fix this?

Parents
  • But what character set is the display using?
    And what character set is the editor using?
    And is there really an issue with the compiler, or with the expectations about what character set that is active?

    The normal way to handle "any" character in a text file is to use some encoding variant of Unicode - most often UTF-8. But how many displays can actually use UTF-8?

    If I want to display swedish characters on a display, I normally have to specifically give the hexadecimal value of these characters because I just can't expect my editor to have a code mapping that is identical to the display.

Reply
  • But what character set is the display using?
    And what character set is the editor using?
    And is there really an issue with the compiler, or with the expectations about what character set that is active?

    The normal way to handle "any" character in a text file is to use some encoding variant of Unicode - most often UTF-8. But how many displays can actually use UTF-8?

    If I want to display swedish characters on a display, I normally have to specifically give the hexadecimal value of these characters because I just can't expect my editor to have a code mapping that is identical to the display.

Children