mirror of
https://github.com/esphome/esphome.git
synced 2026-02-27 17:34:22 -07:00
Force inline write_digit to prevent separate symbol emission
This commit is contained in:
@@ -158,7 +158,7 @@ struct LogBuffer {
|
||||
}
|
||||
#endif
|
||||
// Extract one decimal digit via subtraction (no division - important for ESP8266)
|
||||
static inline void write_digit(char *&p, int &value, int divisor) {
|
||||
static inline void ESPHOME_ALWAYS_INLINE write_digit(char *&p, int &value, int divisor) {
|
||||
char d = '0';
|
||||
while (value >= divisor) {
|
||||
d++;
|
||||
|
||||
Reference in New Issue
Block a user