Add route for hardware_id

This commit is contained in:
zvecr 2022-04-19 00:04:22 +01:00
parent 81cce42118
commit 1d96fc866d
4 changed files with 26 additions and 2 deletions

View file

@ -17,6 +17,7 @@
#include <quantum.h>
#include <xap.h>
#include "hardware_id.h"
#include "secure.h"
#ifndef SECURE_ENABLE
# define secure_get_status() SECURE_UNLOCKED
@ -98,6 +99,11 @@ bool xap_respond_request_bootloader_jump(xap_token_t token, const void *data, si
}
#endif
bool xap_respond_get_hardware_id(xap_token_t token, const void *data, size_t length) {
hardware_id_t ret = get_hardware_id();
return xap_respond_data(token, &ret, sizeof(ret));
}
#if ((defined(DYNAMIC_KEYMAP_ENABLE)))
bool xap_respond_dynamic_keymap_get_keycode(xap_token_t token, const void *data, size_t length) {
if (length != sizeof(xap_route_dynamic_keymap_get_keymap_keycode_arg_t)) {