App Driver error code check
+ Collaboration diagram for 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.

Definition at line 85 of file app_drv_error.h.

APP_DRV_SUCCESS
#define APP_DRV_SUCCESS
Successful.
Definition: app_drv_error.h:67