Skip to content
Patrick Dowling edited this page Dec 12, 2021 · 6 revisions

Miscellany about TU

Storage Slots

  • There's only 1536 bytes of space available so the number is limited.
  • It's possible to bump it (AppStorage::kNumSlots) but while that will compile and usually work, if you max out the settings in Clocks app things will break.
  • Why? It was a tight squeeze and only worked by making it only stores the settings that are valid for each channels current mode. So if you max out the settings the size increases and the left-over space just isn't large enough an additional slot; with the original scheme there were only 2-3 slots possible (something like 394 bytes used).

Automated Builds

  • While I have a docker container/action with Arduino/Teensy it only seems to compile single .ino projects. Boo.
  • Conversion to platformio might be an option. -> this seems to work reasonably well. At least for a first stab (and not that I'm planning on-going development, but there it is).
  • Any automated builds should be considered experiments and not tested.

Clone this wiki locally