RC2014Z80 / picoterm

Pi Pico VGA Terminal Emulator For RC2014
BSD 3-Clause "New" or "Revised" License
63 stars 19 forks source link

Config Menu + AltGr support FR & BE layout + code formatting #10 + #11

Closed mchobby closed 1 year ago

mchobby commented 1 year ago

AltGr support

A #ifdef did restrict the AltGr support to DE keyboard layout.

ifdef has been remove to allow AltGr support for all keyboard layout.

PicoTerm Menu

CTRL+SHIFT+M to display / Hide the PicoTerm Menu (ESC can also hide the menu). Keyboard strike are not forwarded to Serial while the menu is displayed.

Current menu allows to setup the PicoTerm Color and save it the the Flash. I do avoids the Flash concurrency race by stopping core1 (display) thread while writing the flash.

Code formatting

More code formatting (from previous Pull Request - now closed) have been made to main.c (to make it more readable) . Mix of Tab & space indentation have been replaced with space indentation.