@@ -99,7 +99,7 @@ state_a entry
9999The FSM API can be found [here](https://amast.readthedocs.io/api.html#fsm).
100100The FSM documenation is [here](https://amast.readthedocs.io/fsm.html).
101101
102- The compiled binary on x86 is about 2.3kB of memory (gcc, `-Os`, `-flto`).
102+ The compiled binary on x86 is about 2.4kB of memory (gcc, `-Os`, `-flto`).
103103
104104### Hierarchical state machine (HSM)
105105
@@ -129,11 +129,7 @@ Here is the full implementation of the HSM:
129129#include " amast_config.h"
130130#include " amast.h"
131131
132- enum {
133- APP_EVT_A = AM_EVT_USER,
134- APP_EVT_B,
135- APP_EVT_C
136- };
132+ enum { APP_EVT_A = AM_EVT_USER, APP_EVT_B, APP_EVT_C };
137133
138134struct app {
139135 struct am_hsm hsm;
@@ -218,7 +214,7 @@ substate_b entry
218214The HSM API can be found [here](https://amast.readthedocs.io/api.html#hsm).
219215The HSM documenation is [here](https://amast.readthedocs.io/hsm.html).
220216
221- The compiled binary on x86 is about 3.9kB of memory (gcc, `-Os`, `-flto`).
217+ The compiled binary on x86 is about 4.0kB of memory (gcc, `-Os`, `-flto`).
222218
223219### Active Object
224220
@@ -392,7 +388,7 @@ The AO API can be found [here](https://amast.readthedocs.io/api.html#ao).
392388The Event API can be found [ here] ( https://amast.readthedocs.io/api.html#event ) .
393389The Timer API can be found [ here] ( https://amast.readthedocs.io/api.html#timer ) .
394390
395- The compiled binary on x86 is about 10.7kB of memory (gcc, ` -Os ` , ` -flto ` ).
391+ The compiled binary on x86 is about 10.6kB of memory (gcc, ` -Os ` , ` -flto ` ).
396392
397393## Architecture Diagram
398394
0 commit comments