| 182 | } |
| 183 | |
| 184 | void PRINT_MODULE_USAGE_PARAM_FLAG(char option_char, const char *description, bool is_optional) |
| 185 | { |
| 186 | #ifndef CONSTRAINED_FLASH_NO_HELP |
| 187 | |
| 188 | if (is_optional) { |
| 189 | PX4_INFO_RAW(" [-%c] %s\n", option_char, description); |
| 190 | |
| 191 | } else { |
| 192 | PX4_INFO_RAW(" -%c %s\n", option_char, description); |
| 193 | } |
| 194 | |
| 195 | #endif |
| 196 | } |
| 197 | |
| 198 | void PRINT_MODULE_USAGE_PARAM_STRING(char option_char, const char *default_val, const char *values, |
| 199 | const char *description, bool is_optional) |
no outgoing calls
no test coverage detected