More flexibility on matrix size
This commit is contained in:
parent
ee5ca258ee
commit
c7592bbd1f
@ -32,7 +32,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
#ifndef KEYMAPS_COUNT
|
#ifndef KEYMAPS_COUNT
|
||||||
#define KEYMAPS_COUNT 1
|
#define KEYMAPS_COUNT 1
|
||||||
#endif
|
#endif
|
||||||
#define KEYS_COUNT (KEYMAPS_COUNT * matrix_rows() * matrix_cols())
|
#ifndef MATRIX_SIZE
|
||||||
|
#define MATRIX_SIZE (matrix_rows() * matrix_cols())
|
||||||
|
#endif
|
||||||
|
#define KEYS_COUNT (KEYMAPS_COUNT * MATRIX_SIZE)
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
uint16_t checksum;
|
uint16_t checksum;
|
||||||
|
Reference in New Issue
Block a user