qmk_settings: retrieve supported settings

This commit is contained in:
Ilya Zhuravlev 2021-07-01 15:10:05 -04:00
parent 2affa3ac05
commit 2848a74f62
3 changed files with 23 additions and 0 deletions

View file

@ -165,6 +165,8 @@ void vial_handle_cmd(uint8_t *msg, uint8_t length) {
break;
}
case vial_qmk_settings_query: {
uint16_t qsid_greater_than = msg[2] | (msg[3] << 8);
qmk_settings_query(qsid_greater_than, msg, length);
break;
}
case vial_qmk_settings_get: {