You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
192 B
C
16 lines
192 B
C
14 years ago
|
#ifndef MATRIX_H
|
||
|
#define MATRIX_H 1
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include "matrix_skel.h"
|
||
|
|
||
|
|
||
|
#define MATRIX_ROWS 9
|
||
|
#define MATRIX_COLS 8
|
||
|
|
||
|
|
||
|
extern uint8_t *matrix;
|
||
|
extern uint8_t *matrix_prev;
|
||
|
|
||
|
#endif
|