コード例 #1
0
void BLE::waitForACIResponse() {
  
  _aci_cmd_pending = true;
  while (_aci_cmd_pending) aci_loop();
  
  // Reset hung-loop detection
  loopingSinceLastBark = false;
}
コード例 #2
0
void BLE::waitForDataCredit() {
  
  _data_credit_pending = true;
  while (_data_credit_pending) aci_loop();
  
  // Reset hung-loop detection
  loopingSinceLastBark = false;
}
コード例 #3
0
void loop()
{
  aci_loop();
  ControlBuzzer();
}
コード例 #4
0
void BLE::ble_loop(void) {
  
  aci_loop();
}
void nRF8001BleUartLoop() {

  //Process any ACI commands or events
  aci_loop();
}