1 #ifndef UX_TEST_ACTIONS_H 2 #define UX_TEST_ACTIONS_H 3 4 #include "ux_test.h" 5 create_error_match_action(UINT system_level,UINT system_context,UINT error_code)6static UX_TEST_ACTION create_error_match_action(UINT system_level, UINT system_context, UINT error_code) 7 { 8 9 UX_TEST_ACTION action = { 0 }; 10 11 12 action.usbx_function = UX_TEST_OVERRIDE_ERROR_CALLBACK; 13 action.system_level = system_level; 14 action.system_context = system_context; 15 action.error_code = error_code; 16 action.no_return = 1; 17 18 return action; 19 } 20 21 #endif