Command Console Library
Enumerated Types

General Description

Enumerations

enum  cy_command_console_err_t {
  ERR_CMD_OK = 0 ,
  ERR_UNKNOWN = -1 ,
  ERR_UNKNOWN_CMD = -2 ,
  ERR_INSUFFICENT_ARGS = -3 ,
  ERR_TOO_MANY_ARGS = -4 ,
  ERR_ADDRESS = -5 ,
  ERR_NO_CMD = -6 ,
  ERR_TOO_LARGE_ARG = -7 ,
  ERR_OUT_OF_HEAP = -8 ,
  ERR_BAD_ARG = -9 ,
  ERR_LAST_ERROR = -10
}
 Internal command console error codes. More...
 

Enumeration Type Documentation

◆ cy_command_console_err_t

Internal command console error codes.

Enumerator
ERR_CMD_OK 

Error code - success.

ERR_UNKNOWN 

Error code - unknown error.

ERR_UNKNOWN_CMD 

Error code - unknown command.

ERR_INSUFFICENT_ARGS 

Error code - Insufficient arguments passed.

ERR_TOO_MANY_ARGS 

Error code - Too many arguments passed.

ERR_ADDRESS 

Error code - Bad address.

ERR_NO_CMD 

Error code - No command entered.

ERR_TOO_LARGE_ARG 

Error code - Argument too large.

ERR_OUT_OF_HEAP 

Error code - Out of heap memory.

ERR_BAD_ARG 

Error code - Bad argument passed.

ERR_LAST_ERROR 

Error code - Do not use.