Map 'n with tilde' characters to 'n with bar'.

This commit is contained in:
mmdolze
2010-01-06 18:22:31 +00:00
parent 585ac6425d
commit 97a2b20b0d
2 changed files with 4 additions and 6 deletions
+1
View File
@@ -18,6 +18,7 @@ v.0.5dev (ongoing development)
* hd44780-4bit: Fix bug not checking for keypad rows 7-10 correctly
* Modify serial drivers to use cfmakeraw
+ hd44780: Add a 'none' charmap which does not replace any character
* hd44780: Change mapping for spanish 'n with tilde' characters
v0.5.3
+ lcdexec: notification when called program finishes
+3 -6
View File
@@ -71,10 +71,7 @@ const unsigned char none_charmap[] = {
* - map umlaut accent characters to the corresponding umlaut characters
* - map other accent characters to the characters without accents
* - map beta (=sharp s), micro and Yen
*
* Alternative mappings:
* - #112 ("p") -> #240 (large "p"), orig. mapped -> #112
* - #113 ("q") -> #241 (large "q"), orig. mapped -> #113
* - map 'n/N with tilde' to 'n with bar above'
*
* HD44780 misses backslash
*
@@ -113,12 +110,12 @@ const unsigned char HD44780_charmap[] = {
/* #192 */
65, 65, 65, 65, 225, 65, 65, 67,
69, 69, 69, 69, 73, 73, 73, 73,
68, 78, 79, 79, 79, 79, 239, 120,
68, 238, 79, 79, 79, 79, 239, 120,
48, 85, 85, 85, 245, 89, 240, 226,
/* #224 */
97, 97, 97, 97, 225, 97, 97, 99,
101, 101, 101, 101, 105, 105, 105, 105,
111, 110, 111, 111, 111, 111, 239, 253,
111, 238, 111, 111, 111, 111, 239, 253,
48, 117, 117, 117, 245, 121, 240, 255
};