Cleanup, moving stuff out of ibm.h and such. Moved more configuration variables into main. Minor changes for multiplatform.

This commit is contained in:
waltje
2017-11-02 02:28:00 -05:00
parent 0565bf76af
commit b40ea14027
92 changed files with 565 additions and 467 deletions

View File

@@ -86,7 +86,7 @@ static uint8_t bug_buff[FIFO_LEN], /* serial port data buffer */
static char bug_str[UISTR_LEN]; /* UI output string */
extern void set_bugui(char *__str);
extern void ui_sb_bugui(char *__str);
/* Update the system's UI with the actual Bugger status. */
@@ -106,7 +106,7 @@ bug_setui(void)
(bug_ledr&0x02)?'R':'r', (bug_ledr&0x01)?'R':'r');
/* Send formatted string to the UI. */
ui_sb_set_text(bug_str);
ui_sb_bugui(bug_str);
}