Exemple #1
0
void SSIContReadOperation(void)
{
    // The header was read - continue with  the payload read
    if (!SpiReadDataCont()) {
        /* All the data was read - finalize handling by switching
           to the task and calling from task Event Handler */
        SpiTriggerRxProcessing();
    }
}
void SSIContReadOperation(void)
{
  DEBUGPRINT_F("\tCC3000: SpiContReadOperation\n\r");
  
  /* The header was read - continue with  the payload read */
  if (!SpiReadDataCont())
  {
    /* All the data was read - finalize handling by switching to teh task
     *  and calling from task Event Handler */
    //DEBUGPRINT_F("SPItrig\n\r");
    SpiTriggerRxProcessing();
  }
}
Exemple #3
0
void SSIContReadOperation(void)
{
  //Serial.println("SSIContReadOp");
  
  //
  // The header was read - continue with  the payload read
  //
  if (!SpiReadDataCont())
  {
    
    
    //
    // All the data was read - finalize handling by switching to teh task
    //  and calling from task Event Handler
    //
    SpiTriggerRxProcessing();
  }
}