Commit 6b7fb4b
The TARGETS list in `ci/measure_baseline_205.py` used `teensyLC`
(camelCase), but the env key in `tests/platform/teensylc/platformio.ini`
is `teensylc` (lowercase). fbuild's env lookup is case-sensitive, so
every prior run errored:
`build failed: invalid environment 'teensyLC': config error: environment
'teensyLC' not found`. With the name corrected, all four targets build
cleanly.
Captured numbers (release, host arm-none-eabi-size):
| env | TUs | .text | .data | .bss | .dmabuffers |
|-------------|----:|-------:|------:|------:|------------:|
| teensylc | 68 | 6,980 | 380 | 1,068 | 192 |
| teensy30 | 68 | 6,684 | 272 | 1,120 | 248 |
| teensy41 | 85 | n/a | 3,776 | 1,664 | n/a |
| stm32f103c8 | 201 | 12,192 | 240 | 1,012 | — |
Quick AC read for #205:
- AC#1 (teensylc Blink ≤ 250 TUs, .bss ≤ 3 KB): met (68 TUs, 1,068 B).
- AC#2 (teensy30 .dmabuffers ≤ 1 KB): met (248 B).
- AC#3 (teensy41 builds): met.
- AC#4 (stm32f103c8 builds + SPI auto-discovered): builds; SPI
attribution requires inspecting compile_commands separately.
Caveat: the script's "excluded library hits" scan counts every
substring match in compile_commands.json, including `-I.../libraries/<lib>`
flags propagated to every TU. That is why FNET/Snooze/RadioHead each
show "68 entries" on teensylc — the count equals the TU count because
the include path is on every TU, not because 68 FNET sources were
compiled. The functional AC#1 ("FNET / Snooze / RadioHead / mbedtls
not compiled") still requires inspecting the `file` fields, not the
`arguments` fields. Tracked as a follow-up.
Refs: #205 AC#1-#4.
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent fffb1b4 commit 6b7fb4b
2 files changed
Lines changed: 69 additions & 52 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
57 | 57 | | |
58 | 58 | | |
59 | 59 | | |
60 | | - | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
61 | 64 | | |
62 | 65 | | |
63 | 66 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
2 | 2 | | |
3 | | - | |
4 | | - | |
5 | | - | |
6 | | - | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
7 | 7 | | |
8 | | - | |
| 8 | + | |
9 | 9 | | |
10 | | - | |
11 | | - | |
12 | | - | |
13 | | - | |
14 | | - | |
15 | | - | |
16 | | - | |
17 | | - | |
| 10 | + | |
18 | 11 | | |
19 | | - | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
20 | 24 | | |
21 | | - | |
22 | | - | |
23 | | - | |
24 | | - | |
| 25 | + | |
25 | 26 | | |
26 | | - | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
27 | 39 | | |
28 | | - | |
29 | | - | |
30 | | - | |
31 | | - | |
32 | | - | |
33 | | - | |
34 | | - | |
35 | | - | |
36 | | - | |
| 40 | + | |
37 | 41 | | |
38 | | - | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
39 | 54 | | |
40 | | - | |
41 | | - | |
42 | | - | |
43 | | - | |
44 | | - | |
45 | | - | |
| 55 | + | |
46 | 56 | | |
47 | | - | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
48 | 68 | | |
49 | | - | |
50 | | - | |
51 | | - | |
52 | | - | |
53 | | - | |
54 | | - | |
55 | | - | |
| 69 | + | |
56 | 70 | | |
57 | | - | |
58 | | - | |
59 | | - | |
60 | | - | |
61 | | - | |
62 | | - | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
63 | 77 | | |
64 | 78 | | |
65 | 79 | | |
66 | | - | |
| 80 | + | |
67 | 81 | | |
68 | 82 | | |
0 commit comments