예제 #1
0
파일: WiFlyDevice.cpp 프로젝트: egil/DEX1
void WiFlyDevice::newBegin() {
  while (!uart.begin()) {
    Serial.println("uart init failed, retrying");
  }
  
  reboot(); // Reboot to get device into known state
  requireFlowControl();
}
예제 #2
0
void WiFlyDevice::begin() {
  /*
   */

  DEBUG_LOG(1, "Entered WiFlyDevice::begin()");
  uart.begin();
  reboot(); // Reboot to get device into known state
  requireFlowControl();
  setConfiguration();
}
예제 #3
0
파일: WiFlyDevice.cpp 프로젝트: egil/DEX1
void WiFlyDevice::begin() {
  /*
   */

  DEBUG_LOG(1, "Entered WiFlyDevice::begin()");

  while (!uart.begin()) {
    Serial.println("uart init failed, retrying");
  }
  reboot(); // Reboot to get device into known state
  requireFlowControl();
  setConfiguration();
}