X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fmware%2Fparser.h;h=ca1d26e99bfa29b030acc86699db9554ace8657f;hb=183859226be37f23232f080b9e7457113a0faeb7;hp=0e2b0b9d9aa5804335830fe55a49733eba2001eb;hpb=f87390bf71f44a3ed9dc65c66128c5c6979655a9;p=bertos.git diff --git a/bertos/mware/parser.h b/bertos/mware/parser.h index 0e2b0b9d..ca1d26e9 100644 --- a/bertos/mware/parser.h +++ b/bertos/mware/parser.h @@ -70,8 +70,8 @@ * // Declare a buzzer command * MAKE_CMD(beep, "d", "", * ({ - * buz_beep(args[1].l); - * RC_OK; + * buz_beep(args[1].l); + * RC_OK; * }), 0) * * // initialize the parser @@ -92,7 +92,7 @@ * //Execute command * if(!parser_execute_cmd(templ, args)) * { - * // error + * // error * } * // Now args contain the outputs of the function, you can send it * // back to the caller @@ -100,6 +100,8 @@ * * \endcode * + * Configuration file: cfg_parser.h + * * \author Bernie Innocenti * \author Stefano Fedrigo * \author Giovanni Bajo