mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-30 08:52:01 -05:00
* EGD-3229 text helper classes added with tests - used in tests, plus misc utils needed No major actual functionality changed - TextClasses added with this PR are used in tests only in this commit. * classes needed to rewrite gui::Text added * some utilities needed to rewrite gui::Text added * tests added
13 lines
883 B
C++
13 lines
883 B
C++
#pragma once
|
|
|
|
#define DEBUG_APPLICATION_MANAGEMENT 0 /// show verbose logs in ApplicationManager
|
|
#define DEBUG_SCOPED_TIMINGS 1 /// show timings in measured functions
|
|
#define _RT1051_UART_DEBUG 0 /// show full modem uart communication
|
|
#define DEBUG_MODEM_OUTPUT_RESPONSE 1 /// show full modem output
|
|
#define DEBUG_SERVICE_MESSAGES 0 /// show messages prior to handling in service
|
|
#define DEBUG_DB_MODEL_DATA 0 /// show messages prior to handling in service
|
|
#define DEBUG_FONT 0 /// show Font debug messages
|
|
#define DEBUG_GUI_TEXT 0 /// show basic debug messages for gui::Text - warning this can be hard on cpu
|
|
#define DEBUG_GUI_TEXT_LINES 0 /// show extended debug messages for gui::Text - lines building
|
|
#define DEBUG_GUI_TEXT_CURSOR 0 /// show extended debug messages for gui::Text - cursor handling
|