Refactor UART handling: update UART status management, improve dialog window dimensions, and enhance main menu display.

This commit is contained in:
2025-05-15 19:10:39 +02:00
parent 24d9cc8b17
commit 2662415ed5
5 changed files with 95 additions and 39 deletions
+5 -2
View File
@@ -8,9 +8,12 @@
#define TRUE 1
#define FALSE 0
#define BYTE uint8_t
#define MIN_X_TERMINAL_SIZE 80
#define MIN_Y_TERMINAL_SIZE 30
#define MIN_X_TERMINAL_SIZE 50
#define MIN_Y_TERMINAL_SIZE 20
void handle_sigint(int sig);
int main(int argc, char const **argv);
#endif