| 123456789101112131415 |
- #ifndef SCPI_ARGS_H
- #define SCPI_ARGS_H
- // ------------------------------------------------------------------------
- #include "app/scpi/scpi_base.h" // xArgument_t
- #include <stdint.h> // uint8_t
- // ------------------------------------------------------------------------
- // @parseArguments_helper
- // Helper function. Used to convenient call of @parseArguments inside command handler module
- // Parameters:
- // @common_ctx - process program data state context, see @sProcessProgramDataCommonContext_t
- // Other parameters: refer @parseArguments
- // Returns: refer @parseArguments
- eScpiParserStatus_t parseArguments_helper( void * common_ctx, const uint8_t * argTypes, size_t argN, size_t argOptionalN);
- #endif
|