Exemple #1
0
        private void sendIsFinished(AtCommand cmd)
        {
            //active command is done
            releaseActiveCmd();

            //controller can stop now
            allowStop();
        }
Exemple #2
0
 public void SendCommand(AtCommand cmd)
 {
     cmdQ.Enqueue(cmd);
 }
Exemple #3
0
 private void setActiveCmd(AtCommand cmd)
 {
     activeCmd          = cmd;
     isAnyCommandActive = true;
 }