20190816

Dependencies:   mbed

main.cpp

Committer:
VASKO
Date:
2019-08-03
Revision:
11:6519744c77f9
Parent:
10:f7a320faef76
Child:
12:6f63e376c0aa

File content as of revision 11:6519744c77f9:

#include "PrjDefs.h"

DigitalOut myled(LED1);


int main() {
    TxRxServiceInit();
            
            //Exige Monumentum
            //Я дебил,потому что хотел выполнить действия,которые
            //требуются постоянно,один раз и именно здесь.
            
    while(1) {
        if ( ArrRxCmplt == 1 ){
            memcpy(&TxBuff, &RxBuff, ArrTxSize);
            TxBuffFull = 1;
            ArrRxCmplt = 0;
            }
        if( !ArrTxBusy && TxBuffFull ) {
            StartTx();
            TxBuffFull = 0;
            }
        }//while(1)
}//main