Exposed F256 BREAK key to IOCTRL

This commit is contained in:
Peter Weingartner 2024-12-26 18:40:07 -05:00
parent 83d3c74839
commit 5279776737
2 changed files with 3 additions and 1 deletions

View file

@ -762,6 +762,8 @@ short con_ioctrl(p_channel chan, short command, uint8_t * buffer, short size) {
/* Return the result of the BREAK key test */
#if MODEL == MODEL_FOENIX_A2560K
return kbdmo_break();
#elif MODEL == MODEL_FOENIX_F256 || MODEL == MODEL_FOENIX_F256K || MODEL == MODEL_FOENIX_F256K2 || MODEL == MODEL_FOENIX_F256JR2
return kbd_break();
#else
/* TODO: flesh this out for the A2560U */
return 0;

View file

@ -7,6 +7,6 @@
#define VER_MAJOR 1
#define VER_MINOR 1
#define VER_BUILD 12
#define VER_BUILD 13
#endif