File tree
31 files changed
+30
-127
lines changed- .github/workflows
- components
- binary-log/example
- ble_gatt_server
- example
- main
- include
- cli
- detail
- example
- main
- include
- src
- drv2605
- example/main
- include
- i2c
- example
- main
- include
- state_machine/example
- wifi
- example/main
- include
- doc
31 files changed
+30
-127
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
95 | 95 |
| |
96 | 96 |
| |
97 | 97 |
| |
98 |
| - | |
99 |
| - | |
100 |
| - | |
101 | 98 |
| |
102 | 99 |
| |
103 | 100 |
| |
104 |
| - | |
105 |
| - | |
106 |
| - | |
107 | 101 |
| |
108 | 102 |
| |
109 | 103 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
5 |
| - | |
6 |
| - | |
7 |
| - | |
8 | 5 |
| |
9 | 6 |
| |
10 | 7 |
| |
|
Lines changed: 0 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
105 | 105 |
| |
106 | 106 |
| |
107 | 107 |
| |
108 |
| - | |
109 | 108 |
| |
110 | 109 |
| |
111 | 110 |
| |
| |||
118 | 117 |
| |
119 | 118 |
| |
120 | 119 |
| |
121 |
| - | |
122 | 120 |
| |
123 | 121 |
| |
124 | 122 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
36 | 36 |
| |
37 | 37 |
| |
38 | 38 |
| |
39 |
| - | |
40 |
| - | |
41 |
| - |
Lines changed: 0 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
5 |
| - | |
6 | 5 |
| |
7 | 6 |
| |
8 | 7 |
| |
| |||
400 | 399 |
| |
401 | 400 |
| |
402 | 401 |
| |
403 |
| - |
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
2 |
| - | |
3 |
| - | |
4 |
| - | |
5 |
| - | |
6 |
| - | |
7 |
| - | |
8 |
| - | |
9 | 1 |
| |
10 |
| - | |
| 2 | + | |
11 | 3 |
| |
12 | 4 |
|
- .github/workflows/ccpp.yml-28
- .github/workflows/ci.yml+106
- .github/workflows/win_ci.yml.disabled+48
- .gitignore+1
- CHANGELOG.md+19-2
- CMakeLists.txt+13-6
- README.md+82-51
- doc/doxy/Doxyfile+1-1
- doc/uml/cli.uml+301-39
- doc/uml/implementation.png
- examples/boostasio_nonowner_iocontext.cpp+4-7
- examples/boostasio_nonowner_iocontext_vsprj/boostasio_nonowner_iocontext.vcxproj+4-4
- examples/complete.cpp+21-8
- examples/complete_vsprj/complete.vcxproj+4-4
- examples/filesession_vsprj/filesession.vcxproj+4-4
- examples/pluginmanager.cpp+7-7
- examples/pluginmanager_vsprj/pluginmanager.vcxproj+4-4
- examples/simplelocalsession_vsprj/simplelocalsession.vcxproj+4-4
- examples/standaloneasio_nonowner_iocontext.cpp+2-2
- examples/standaloneasio_nonowner_iocontext_vsprj/standaloneasio_nonowner_iocontext.vcxproj+4-4
- include/cli/cli.h+210-86
- include/cli/clifilesession.h+3-5
- include/cli/clilocalsession.h+3-2
- include/cli/detail/commandprocessor.h+48-7
- include/cli/detail/fromstring.h+97-107
- include/cli/detail/genericasioremotecli.h+11-8
- include/cli/detail/genericcliasyncsession.h+4-2
- include/cli/detail/history.h+53-5
- include/cli/detail/inputdevice.h+3-1
- include/cli/detail/keyboard.h+3-15
- include/cli/detail/linuxkeyboard.h+40-17
- include/cli/detail/platform.h+44
- include/cli/detail/screen.h+46
- include/cli/detail/server.h+4-6
- include/cli/detail/split.h+10-1
- include/cli/detail/telnetscreen.h+48
- include/cli/detail/terminal.h+8-1
- include/cli/detail/winkeyboard.h+13-14
- include/cli/detail/winscreen.h+62
- include/cli/filehistorystorage.h+8
- include/cli/historystorage.h+2
- include/cli/volatilehistorystorage.h+8
- test/CMakeLists.txt+2-2
- test/scheduler_test_templates.h+2-2
- test/test_boostasioscheduler.cpp+1-1
- test/test_cli.cpp+12-12
- test/test_history.cpp+34-1
- test/test_menu.cpp+4-4
- test/test_split.cpp+43
- test/test_standaloneasioscheduler.cpp+1-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
18 | 18 |
| |
19 | 19 |
| |
20 | 20 |
| |
| 21 | + | |
| 22 | + | |
| 23 | + | |
21 | 24 |
| |
22 | 25 |
| |
23 | 26 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
5 |
| - | |
6 |
| - | |
7 |
| - |
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
14 | 14 |
| |
15 | 15 |
| |
16 | 16 |
| |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
17 | 22 |
| |
18 | 23 |
| |
19 | 24 |
| |
|
0 commit comments