mirror of
https://github.com/jmwtsn/qmk_firmware.git
synced 2026-06-03 19:53:31 -03:00
Add API version assertion for split_data_sync module (#26237)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
// Copyright 2022 QMK
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
[0] = LAYOUT(KC_L, KC_R)
|
||||
};
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"modules": [
|
||||
"qmk/split_data_sync"
|
||||
]
|
||||
}
|
||||
@@ -3,6 +3,9 @@
|
||||
#include "debug.h"
|
||||
#include "timer.h"
|
||||
#include "transactions.h"
|
||||
#include "community_modules.h"
|
||||
|
||||
ASSERT_COMMUNITY_MODULES_MIN_API_VERSION(1, 1, 2);
|
||||
|
||||
typedef struct _master_to_slave_t {
|
||||
int m2s_data;
|
||||
|
||||
Reference in New Issue
Block a user