You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
865 B
36 lines
865 B
8 years ago
|
#ifndef ALVICSTEP_CONFIG_H
|
||
|
#define ALVICSTEP_CONFIG_H
|
||
|
|
||
|
#include "../config.h"
|
||
|
|
||
|
/* USB Device descriptor parameter */
|
||
|
#define PRODUCT_ID 0x6060
|
||
|
#define DEVICE_VER 0x0001
|
||
|
|
||
|
/* key matrix size */
|
||
|
#define MATRIX_ROWS 16
|
||
|
#define MATRIX_COLS 8
|
||
|
|
||
|
/*
|
||
|
* Keyboard Matrix Assignments
|
||
|
*
|
||
|
* Change this to how you wired your keyboard
|
||
|
* COLS: AVR pins used for columns, left to right
|
||
|
* ROWS: AVR pins used for rows, top to bottom
|
||
|
* DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
|
||
|
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
|
||
|
*
|
||
|
*/
|
||
|
//Passed through the port multipler, so 4 pins =16
|
||
|
#define MATRIX_ROW_PINS { F0,F1, F2, F3 }
|
||
|
|
||
|
// May be upside down.
|
||
|
#define MATRIX_COL_PINS { B0,B1, B2, B3, B4, B5, B6, B7 }
|
||
|
#define UNUSED_PINS
|
||
|
|
||
|
/* COL2ROW or ROW2COL */
|
||
|
#define DIODE_DIRECTION COL2ROW
|
||
|
|
||
|
|
||
|
#endif
|