summaryrefslogtreecommitdiff
path: root/keyboards/nullbitsco
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2024-03-31 01:07:19 +1100
committerGitHub <noreply@github.com>2024-03-30 14:07:19 +0000
commit2dd406f08fc5d9877c8fd2642e94975eae37e86f (patch)
tree97f1833428dff865e99a2332a9c779fc02ff803d /keyboards/nullbitsco
parent76bd5142cfed1fb8e07b9f32fb0b010fbc068fa4 (diff)
Remove `quantum.h` includes from keyboard custom `matrix.c`s (#23371)
Diffstat (limited to 'keyboards/nullbitsco')
-rw-r--r--keyboards/nullbitsco/nibble/matrix.c3
-rw-r--r--keyboards/nullbitsco/snap/matrix.c7
2 files changed, 4 insertions, 6 deletions
diff --git a/keyboards/nullbitsco/nibble/matrix.c b/keyboards/nullbitsco/nibble/matrix.c
index 496c5dbe32..6508b704e9 100644
--- a/keyboards/nullbitsco/nibble/matrix.c
+++ b/keyboards/nullbitsco/nibble/matrix.c
@@ -13,7 +13,8 @@
13 * You should have received a copy of the GNU General Public License 13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>. 14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */ 15 */
16#include "quantum.h" 16#include "matrix.h"
17#include "wait.h"
17 18
18#define COL_SHIFTER ((uint32_t)1) 19#define COL_SHIFTER ((uint32_t)1)
19 20
diff --git a/keyboards/nullbitsco/snap/matrix.c b/keyboards/nullbitsco/snap/matrix.c
index ceb9cd8984..3cd3f5c37e 100644
--- a/keyboards/nullbitsco/snap/matrix.c
+++ b/keyboards/nullbitsco/snap/matrix.c
@@ -13,13 +13,10 @@
13 * You should have received a copy of the GNU General Public License 13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>. 14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */ 15 */
16#include <stdint.h>
17#include <stdbool.h>
18#include <string.h>
19#include "util.h"
20#include "matrix.h" 16#include "matrix.h"
17#include <string.h>
21#include "split_util.h" 18#include "split_util.h"
22#include "quantum.h" 19#include "wait.h"
23 20
24#define VIRT_COLS_PER_HAND 1 21#define VIRT_COLS_PER_HAND 1
25#define PHYS_COLS_PER_HAND (MATRIX_COLS - VIRT_COLS_PER_HAND) 22#define PHYS_COLS_PER_HAND (MATRIX_COLS - VIRT_COLS_PER_HAND)