BV SPI: minor text fix

This commit is contained in:
King Kévin 2018-03-21 14:14:46 +01:00
parent 6a35bdc263
commit b8304d588f
1 changed files with 5 additions and 5 deletions

View File

@ -443,10 +443,10 @@ static bool busvoodoo_spi_action(const char* action, uint32_t repetition, bool p
// command handlers
/** command to transmit and receive data
* @param[in] argument no argument required
/** command to perform actions
* @param[in] argument actions to perform
*/
static void busvoodoo_spi_command_transceive(void* argument)
static void busvoodoo_spi_command_actions(void* argument)
{
if (NULL==argument || 0==strlen(argument)) {
printf("available actions (separated by space or ,):\n");
@ -479,10 +479,10 @@ static const struct menu_command_t busvoodoo_spi_commands[] = {
{
'a',
"action",
"run protocol action",
"perform protocol actions",
MENU_ARGUMENT_STRING,
"[actions]",
&busvoodoo_spi_command_transceive,
&busvoodoo_spi_command_actions,
},
};