App Driver error code check

Macros

#define APP_DRV_ERR_CODE_CHECK(err_code)
 App Driver error code check. More...
 

Detailed Description

Macro Definition Documentation

◆ APP_DRV_ERR_CODE_CHECK

#define APP_DRV_ERR_CODE_CHECK (   err_code)
Value:
do \
{ \
if (APP_DRV_SUCCESS != err_code) \
{ \
return err_code; \
} \
} while(0)

App Driver error code check.

APP_DRV_SUCCESS
#define APP_DRV_SUCCESS
Definition: app_drv_error.h:67