Skip to content

Commit 04839d0

Browse files
committed
Add corrections to README.md
1 parent 70176a7 commit 04839d0

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ state_a entry
9999
The FSM API can be found [here](https://amast.readthedocs.io/api.html#fsm).
100100
The 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

138134
struct app {
139135
struct am_hsm hsm;
@@ -218,7 +214,7 @@ substate_b entry
218214
The HSM API can be found [here](https://amast.readthedocs.io/api.html#hsm).
219215
The 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).
392388
The Event API can be found [here](https://amast.readthedocs.io/api.html#event).
393389
The 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

Comments
 (0)