summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/keymaps/soispha/hid/hid.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/keymaps/soispha/hid/hid.c b/src/keymaps/soispha/hid/hid.c
index 73b7370..a68867c 100644
--- a/src/keymaps/soispha/hid/hid.c
+++ b/src/keymaps/soispha/hid/hid.c
@@ -37,11 +37,5 @@ void hid_send(uint32_t hex) {
// `data` is a pointer to the buffer containing the received HID report
// `length` is the length of the report - always `RAW_EPSIZE`
void raw_hid_receive(uint8_t *data, uint8_t length) {
- uint8_t response[length];
- memset(response, 0, length);
- response[0] = 'B';
-
- if (data[0] == 'A') {
- raw_hid_send(response, length);
- }
+ /* We don't care about received stuff */
}