0137b02319
* Port DIRECT_PINS from split_common/matrix.c to matrix.c * Reorder matrix.c to remove foward declaration and match split_common/matrix.c * Refactor nano to use DIRECT_PINS * Reorder matrix.c to remove foward declaration and match split_common/matrix.c * Add DIRECT_PINS documentation * Reorder matrix.c to remove foward declaration and match split_common/matrix.c - fix logic from inherited from split_common * Add DIRECT_PINS documentation - review comments
14 lines
219 B
C
14 lines
219 B
C
#pragma once
|
|
|
|
#include "quantum.h"
|
|
|
|
#define LAYOUT_ortho_2x4( \
|
|
k01, k02, k03, k04, \
|
|
k05, k06, k07, k08 \
|
|
) { \
|
|
{ k01, k02, k03, k04 }, \
|
|
{ k05, k06, k07, k08 } \
|
|
}
|
|
|
|
#define LAYOUT LAYOUT_ortho_2x4
|