[libretiny] Regenerate boards, enable Cortex-M4 atomics, and consolidate platform code

This commit is contained in:
J. Nick Koston
2026-01-13 09:09:49 -10:00
parent a45cbc6595
commit ec38ffc310
2 changed files with 0 additions and 22 deletions

View File

@@ -1,13 +1,2 @@
logger:
level: VERBOSE
esphome:
on_boot:
- lambda: |-
int x = 100;
x = clamp(x, 50, 90);
assert(x == 90);
x = clamp_at_least(x, 95);
assert(x == 95);
x = clamp_at_most(x, 40);
assert(x == 40);

View File

@@ -1,13 +1,2 @@
logger:
level: VERBOSE
esphome:
on_boot:
- lambda: |-
int x = 100;
x = clamp(x, 50, 90);
assert(x == 90);
x = clamp_at_least(x, 95);
assert(x == 95);
x = clamp_at_most(x, 40);
assert(x == 40);