mirror of
https://github.com/zsa/qmk_firmware.git
synced 2026-04-28 02:18:59 +00:00
Files
af752e5e5813bb9a6fa45a12e92cfbd2bb11373d
16 lines
459 B
C
16 lines
459 B
C
// Copyright 2025 QMK
|
|||
// SPDX-License-Identifier: GPL-2.0-or-later
|
|||
|
|||
#include "raw_hid.h"
|
|||
#include "host.h"
|
|||
|
|||
void raw_hid_send(uint8_t *data, uint8_t length) {
|
|||
host_raw_hid_send(data, length);
|
|||
}
|
|||
|
|||
__attribute__((weak)) void raw_hid_receive(uint8_t *data, uint8_t length) {
|
|||
// Users should #include "raw_hid.h" in their own code
|
|||
// and implement this function there. Leave this as weak linkage
|
|||
// so users can opt to not handle data coming in.
|
|||
}
|