@@ -242,9 +242,9 @@ and understand this library.
242
242
243
243
__ Congratulations, you have made your first project with Commander API :)__
244
244
245
- ** The importance of response function**
245
+ # The importance of response function
246
246
247
- ![ ] ( https://github.com/dani007200964/Commander-API/blob/master/Doc/images/images/ response_function_explained_01.png )
247
+ ![ ] ( https://github.com/dani007200964/Commander-API/blob/master/Doc/images/response_function_explained_01.png )
248
248
Imagine a system that has a various number of channels to communicate with.
249
249
For example a Linux system, which has its shell redirected to SSH, Serial, GUI...
250
250
If a command arrives in one of the supported channels, you want to generate
@@ -256,12 +256,12 @@ function to it. The advanced demo shows how to add a response function correctly
256
256
If you don't use a response function, please use NULL as argument. In this case the
257
257
error messages will be redirected to INTERPRETER_PRINTF definition.
258
258
259
- ** Print the description**
259
+ # Print the description
260
260
261
- ![ ] ( https://github.com/dani007200964/Commander-API/blob/master/Doc/images/images/ description_example.png )
261
+ ![ ] ( https://github.com/dani007200964/Commander-API/blob/master/Doc/images/description_example.png )
262
262
To print the description you just have to add a question mark to the end of the command.
263
263
264
- ** When and how to use a buffer?**
264
+ # When and how to use a buffer?
265
265
266
266
Commander API designed to work mainly on embedded devices. In these devices usually you work
267
267
from RAM. If you work from RAM you have an option to modify the contant of the command that
@@ -290,7 +290,7 @@ If it is too short, than you can't interpret large commands correctly.
290
290
291
291
If you __ does not need a buffer__ , than you __ MUST uncomment__ INTERPRETER_BUFFER_SIZE!
292
292
293
- ** Arduino printf function**
293
+ # Arduino printf function
294
294
295
295
The arduino_printf function is implemented by compatibility reasons. Commander API requires
296
296
a printf like function as a communication channel. This function acts like a printf function,
0 commit comments