CMD0x20_Request_PowerCtrl.c 333 B

12345678910
  1. #include "CommandsDefine.h"
  2. void CMD0x20_Request_PowerCtrl_process(u8 *pData,u16 dataLen,u8 bIsContentBitInverted_Recv,u8 bIsContentBitInverted_SendBack)
  3. {
  4. #ifdef RUNNING_WHERE_AT_BOOT
  5. Command_SendbackErrorMessage(Error0x02_CannotRunAtBoot,1);
  6. #else
  7. Command_SendbackErrorMessage(Error0x90_CMD_ThisVersionNotSupport,1);
  8. #endif
  9. }