This commit is contained in:
Олег Бородин
2025-02-02 20:13:15 +02:00
parent 9ae1e7bc07
commit 693b6b33b8
8 changed files with 253 additions and 26 deletions

3
tool.h
View File

@@ -16,7 +16,8 @@
#define REG_SETDOWN(reg, value) ((reg) &= ~(value))
#define REG_BIT_VALUE(reg, value) ((reg) & (1 << (value)))
#define BIT(bit) (1 << (bit))
#define BIT(bit) (1 << (bit))
uint16_t str_len(uint8_t * str);