20190816

Dependencies:   mbed

main.cpp

Committer:
VASKO
Date:
2019-08-03
Revision:
6:1364a236ee22
Parent:
5:ad4e5a078834
Child:
7:7aaa14391264

File content as of revision 6:1364a236ee22:

#include "mbed.h"

#define ArrTxSize 16
#define ArrRxSize 16

Serial pc(USBTX,USBRX);

DigitalOut myled(LED1);

uint8_t ArrTx[ArrTxSize] = {0x20,0x41,0x42,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4A,0x4b,0x4c,0x4d,0x4e,0x4f};
uint8_t ArrRx[ArrRxSize] = {0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
uint8_t *pArrTx = &ArrTx[0];
uint8_t *pArrRx = &ArrRx[0];

void IntrTx() {
    if ( ++pArrTx <= &ArrTx[ArrTxSize-1] ){
    pc.putc(*pArrTx);
    }
    else{
        pc.attach(NULL, Serial::TxIrq);
        myled=0;  
        }
    }

void CopyMemUint8(uint8_t *src = &ArrRx[0], uint8_t *dst = &ArrTx[0], int qty = ArrTxSize){
    for ( ; qty > 0; src++,dst++,qty-- ) *dst = *src;
    }
    
void IntrRx() {
    *pArrRx = pc.getc();
    if ( pArrRx++ >= &ArrRx[ArrRxSize-1] ) {
        pArrRx = &ArrRx[0];
        CopyMemUint8();
        pArrTx = &ArrTx[0];
        pc.putc(*pArrTx);
        pc.attach(&IntrTx, Serial::TxIrq);
        myled=1;  
        }
    }

int main() {
            pc.attach(&IntrRx, Serial::RxIrq);
            pc.attach(NULL, Serial::TxIrq);//я УПЁРТЫЙ дебил
            
            //Exige Monumentum
            //Я дебил,потому что хотел выполнить действия,которые 
            //требуются постоянно,один раз и именно здесь.
            
    while(1) {
    }
}