Searched defs:aci_evt (Results 1 - 4 of 4) sorted by relevance

/hardware/bsp/intel/peripheral/libupm/src/nrf8001/
H A Daci_setup.cxx94 aci_evt_t * aci_evt = NULL; local
136 aci_evt = &(aci_data->evt);
138 if (ACI_EVT_CMD_RSP != aci_evt->evt_opcode)
144 cmd_status = (aci_status_code_t) aci_evt->params.cmd_rsp.cmd_status;
H A Dlib_aci.cxx128 aci_evt_t * aci_evt; local
129 aci_evt = &(aci_data->evt);
131 if (ACI_EVT_CMD_RSP == aci_evt->evt_opcode)
133 if (ACI_STATUS_ERROR_DEVICE_STATE_INVALID == aci_evt->params.cmd_rsp.cmd_status) //in SETUP
143 else if (ACI_STATUS_SUCCESS == aci_evt->params.cmd_rsp.cmd_status) //We are now in STANDBY
153 else if (ACI_STATUS_ERROR_CMD_UNKNOWN == aci_evt->params.cmd_rsp.cmd_status) //We are now in TEST
563 aci_evt_t * aci_evt; local
565 aci_evt = &p_aci_evt_data->evt;
567 switch(aci_evt->evt_opcode)
575 aci_stat->pipes_open_bitmap[i] = aci_evt
[all...]
/hardware/bsp/intel/peripheral/libupm/examples/c++/
H A Dnrf8001-broadcast.cxx102 aci_evt_t * aci_evt; local
103 aci_evt = &aci_data.evt;
105 switch(aci_evt->evt_opcode) {
110 aci_state.data_credit_available = aci_evt->params.device_started.credit_available;
111 switch(aci_evt->params.device_started.device_mode) {
130 if (ACI_STATUS_SUCCESS != aci_evt->params.cmd_rsp.cmd_status) {
145 if (ACI_STATUS_ERROR_ADVT_TIMEOUT == aci_evt->params.disconnected.aci_status) {
H A Dnrf8001-helloworld.cxx214 aci_evt_t * aci_evt; local
215 aci_evt = &aci_data.evt;
216 switch(aci_evt->evt_opcode) {
221 aci_state.data_credit_total = aci_evt->params.device_started.credit_available;
222 switch(aci_evt->params.device_started.device_mode) {
235 if (aci_evt->params.device_started.hw_error) {
248 if (ACI_STATUS_SUCCESS != aci_evt->params.cmd_rsp.cmd_status) {
254 if (ACI_CMD_GET_DEVICE_VERSION == aci_evt->params.cmd_rsp.cmd_opcode) {
257 (uint8_t *)&(aci_evt->params.cmd_rsp.params.get_device_version), sizeof(aci_evt_cmd_rsp_params_get_device_version_t));
289 (uint8_t *)&(aci_evt
[all...]

Completed in 132 milliseconds