root / proj / src / makecode_map.c @ 329
History | View | Annotate | Download (874 Bytes)
1 | 271 | up20180655 | #include "makecode_map.h" |
---|---|---|---|
2 | |||
3 | 324 | up20180642 | static const char makecode_map[] = {'1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '\'', ERROR_CODE /*«*/, ERROR_CODE /*escape*/, |
4 | ERROR_CODE /*tab*/, 'Q', 'W', 'E', 'R', 'T', 'Y', 'U', 'I', 'O', 'P', '+', ERROR_CODE /* ´ */, ERROR_CODE /*enter*/, |
||
5 | ERROR_CODE /*ctrl*/, 'A', 'S', 'D', 'F', 'G', 'H', 'J', 'K', 'L', ERROR_CODE /* Ç */, ERROR_CODE /* º */, '\\', ERROR_CODE /*lshift*/, '~', |
||
6 | 'Z', 'X', 'C', 'V', 'B', 'N', 'M', ',', '.', '-', ERROR_CODE /*rshift*/, ERROR_CODE /*unkown*/, ERROR_CODE /*alt*/, ' ' /*space*/}; |
||
7 | 271 | up20180655 | |
8 | 324 | up20180642 | static const int size = sizeof(makecode_map); |
9 | 271 | up20180655 | |
10 | char (map_makecode)(uint8_t code) {
|
||
11 | int key = code - BASE_CODE;
|
||
12 | if (key < 0 || key >= size) return ERROR_CODE; |
||
13 | return makecode_map[key];
|
||
14 | } |