HomeSort by relevance Sort by last modified time
    Searched defs:aci_evt (Results 1 - 4 of 4) sorted by null

  /hardware/bsp/intel/peripheral/libupm/src/nrf8001/
aci_setup.cxx 94 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;
lib_aci.cxx 128 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->params.pipe_status.pipes_open_bitmap[i];
    [all...]
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
nrf8001-broadcast.cxx 102 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) {
nrf8001-helloworld.cxx 214 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->params.timing.conn_rf_interval), /* Byte aligned *
    [all...]

Completed in 71 milliseconds