Skip to content

Commit

Permalink
Minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mressl committed May 15, 2023
1 parent ebb30c5 commit b88d759
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion platform.io/src/display.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ struct
} display;

const char *const firmwareName = "FS2011 Pro";
const char *const firmwareVersion = "1.1.0";
const char *const firmwareVersion = "1.1.1";

#ifndef SDL_MODE
static uint8_t setupU8X8(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr);
Expand Down
2 changes: 0 additions & 2 deletions platform.io/src/rng.c
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,4 @@ void onRNGViewKey(KeyEvent keyEvent)
{
if (keyEvent == KEY_BACK)
setView(VIEW_MENU);
else if (keyEvent == KEY_UP)
rng.bitQueueTail = (rng.bitQueueTail + 1) & RNG_BITQUEUE_MASK;
}
2 changes: 1 addition & 1 deletion tools/sign-firmware.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def getCRC(buffer, crc=0xffffffff):

input_path = 'platform.io/.pio/build/fs2011/firmware.bin'
output_path = 'tools/'
version = '1.1.0'
version = '1.1.1'

FIRMWARE_SIZE = 0xc000 - 4
FLASH_SIZE = 0x10000
Expand Down

0 comments on commit b88d759

Please sign in to comment.