mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
## Time & Date - Added time to statusbar widget - Added Time & Date Settings app - Added TimeZone app for selecting TimeZone - Added `tt::time` namespace with timezone code ## Other changes - Added `SystemEvent` to publish/subscribe to system wide (e.g. for init code, but also for time settings changes) - Changed the way the statusbar widget works: now there's only 1 that gets shown/hidden, instead of 1 instance per app instance. - Moved `lowercase()` function to new namespace: `tt::string` - Increased T-Deck flash & PSRAM SPI frequencies to 120 MHz (from 80 MHz) - Temporary work-around (+ TODO item) for LVGL stack size (issue with WiFi app) - Suppress T-Deck keystroke debugging to debug level (privacy issue) - Improved SDL dependency wiring in various `CMakeLists.txt` - `Loader` service had some variables renamed to the newer C++ style (from previous C style)
38 lines
1018 B
C
38 lines
1018 B
C
#pragma once
|
|
|
|
/** Find the largest value
|
|
* @param[in] a first value to compare
|
|
* @param[in] b second value to compare
|
|
* @return the largest value of a and b
|
|
*/
|
|
#define TT_MAX(a, b) \
|
|
({ \
|
|
__typeof__(a) _a = (a); \
|
|
__typeof__(b) _b = (b); \
|
|
_a > _b ? _a : _b; \
|
|
})
|
|
|
|
/** Find the smallest value
|
|
* @param[in] a first value to compare
|
|
* @param[in] b second value to compare
|
|
* @return the smallest value of a and b
|
|
*/
|
|
#define TT_MIN(a, b) \
|
|
({ \
|
|
__typeof__(a) _a = (a); \
|
|
__typeof__(b) _b = (b); \
|
|
_a < _b ? _a : _b; \
|
|
})
|
|
|
|
/** @return the absolute value of the input */
|
|
#define TT_ABS(a) ({ (a) < 0 ? -(a) : (a); })
|
|
|
|
/** Clamp a value between a min and a max.
|
|
* @param[in] x value to clamp
|
|
* @param[in] upper upper bounds for x
|
|
* @param[in] lower lower bounds for x
|
|
*/
|
|
#define TT_CLAMP(x, upper, lower) (TT_MIN(upper, TT_MAX(x, lower)))
|
|
|
|
#define TT_STRINGIFY(x) #x
|