Feature #514
Test arena generated handler structure
Beginn:
17.04.2024
Abgabedatum:
% erledigt:
0%
Geschätzter Aufwand:
CS Zielversion:
Beschreibung
Test arena generated handler structure
For all features, UART must be disabled. ("No-Release"-Event is only send on nun-UART releases).
Its ok, but confusing.
Lets try some further shrink.
Arena could generate handler structure. This would make thinks much easier.
Biwak can just access handler directly. Changing bitrate on the fly would be possible.
Biwaks code is not wasted with all the features a chip has.
CANSwitch is a perfect candidate for testing this because release is quite stable.
[20250205]
Does not help. The binary size is even bigger. Current implementation already quite small.
ST mixes init data with volatile runtime data making it impossible to create a constexpr struct for some reason (compiler issue?).
constexpr volatile int i = 5;
struct S1{
volatile int i1;
};
constexpr S1 s1{
.i1{0},
};