source: avrstuff/libs/ps2_keyboard/keymap.h@ c7cc629

main
Last change on this file since c7cc629 was c7cc629, checked in by Adrien Destugues <pulkomandy@…>, 10 years ago

Move the ASCII keymap out of ps2_keyboard.c.

It is used only by the serial converter, so save some flashspace for other projects.

git-svn-id: svn://pulkomandy.tk/avrstuff@112 c6672c3c-f6b6-47f9-9001-1fd6b12fecbe

  • Property mode set to 100644
File size: 728 bytes
Line 
1
2#include <avr/pgmspace.h>
3
4// TODO move to a .c file.
5const char keymap[128] PROGMEM = {
6// 0 1 2 3 4 5 6 7 8 9 A B C D E F
7 '?','?','?','?','?','?','?','?','?','?','?','?','?','?','?','?', // 0
8 '?','?','?','?','?','q','1','?','?','?','z','s','a','w','2','?', // 1
9 '?','c','x','d','e','4','3','?','?',' ','v','f','t','r','5','?', // 2
10 '?','n','b','h','g','y','6','?','?','?','m','j','u','7','8','?', // 3
11 '?','?','k','i','o','0','9','?','?','?','?','l','?','p','?','?', // 4
12 '?','?','?','?','?','?','?','?','?','?','?','?','?','?','?','?', // 5
13 '?','?','?','?','?','?','?','?','?','?','?','?','?','?','?','?', // 6
14 '?','?','?','?','?','?','?','?','?','?','?','?','?','?','?','?' // 7
15};
Note: See TracBrowser for help on using the repository browser.