diff --git a/src/dev/console.c b/src/dev/console.c index a4fb7ef..ee1417d 100644 --- a/src/dev/console.c +++ b/src/dev/console.c @@ -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; diff --git a/src/version.h b/src/version.h index d722354..2479482 100644 --- a/src/version.h +++ b/src/version.h @@ -7,6 +7,6 @@ #define VER_MAJOR 1 #define VER_MINOR 1 -#define VER_BUILD 12 +#define VER_BUILD 13 #endif