Modem emulator for "Datenklo" with AM7910/AM7911 emulation

This commit is contained in:
Andreas Eversberg
2019-09-01 13:15:04 +02:00
parent db1fee9698
commit 7e25e191af
17 changed files with 4315 additions and 2 deletions

View File

@@ -65,6 +65,10 @@ struct debug_cat {
{ "soapy", "\033[1;35m" },
{ "wave", "\033[1;33m" },
{ "radio", "\033[1;34m" },
{ "am791x", "\033[0;31m" },
{ "uart", "\033[0;32m" },
{ "device", "\033[0;33m" },
{ "datenklo", "\033[1;34m" },
{ NULL, NULL }
};
@@ -124,7 +128,6 @@ void _printdebug(const char *file, const char __attribute__((unused)) *function,
while ((p = strchr(file, '/')))
file = p + 1;
if (clear_console_text)
clear_console_text();
if (debug_limit_scroll) {

View File

@@ -28,6 +28,10 @@
#define DSOAPY 21
#define DWAVE 22
#define DRADIO 23
#define DAM791X 24
#define DUART 25
#define DDEVICE 26
#define DDATENKLO 27
void get_win_size(int *w, int *h);