| 31 | void gui_console_clear() {} |
| 32 | void gui_console_printf(const char *format, ...) { (void)format; } |
| 33 | void gui_console_err_printf(const char *format, ...) { |
| 34 | static char message[512]; |
| 35 | va_list ap; |
| 36 | va_start(ap, format); |
| 37 | if (vsnprintf(message, sizeof(message), format, ap) >= 0) { |
| 38 | std::cerr << message; |
| 39 | } |
| 40 | va_end(ap); |
| 41 | } |
| 42 | asic_rev_t gui_handle_reset(const boot_ver_t* boot_ver, asic_rev_t loaded_rev, asic_rev_t default_rev, bool* python) { |
| 43 | (void)boot_ver; |
| 44 | (void)loaded_rev; |
nothing calls this directly
no outgoing calls
no test coverage detected