vasko ozo
/
TxRxService
20190816
main.cpp@15:30e45bd5902e, 2019-08-04 (annotated)
- Committer:
- VASKO
- Date:
- Sun Aug 04 15:43:47 2019 +0000
- Revision:
- 15:30e45bd5902e
- Parent:
- 14:b113f676ef42
- Child:
- 16:459ad1bd82fd
"GetCheckSum" added. "TxBuff" and "RxBuff" now are structs instead of arrays.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
VASKO | 7:7aaa14391264 | 1 | #include "PrjDefs.h" |
VASKO | 0:5152e3f9df72 | 2 | |
VASKO | 0:5152e3f9df72 | 3 | DigitalOut myled(LED1); |
VASKO | 0:5152e3f9df72 | 4 | |
VASKO | 0:5152e3f9df72 | 5 | |
VASKO | 0:5152e3f9df72 | 6 | int main() { |
VASKO | 11:6519744c77f9 | 7 | TxRxServiceInit(); |
VASKO | 12:6f63e376c0aa | 8 | |
VASKO | 2:56a194afd255 | 9 | //Exige Monumentum |
VASKO | 9:dcddb19ad551 | 10 | //Я дебил,потому что хотел выполнить действия,которые |
VASKO | 2:56a194afd255 | 11 | //требуются постоянно,один раз и именно здесь. |
VASKO | 0:5152e3f9df72 | 12 | |
VASKO | 12:6f63e376c0aa | 13 | //Для дебилов: в mbed типы "int" и "unsigned int" имеют размер 4 байта !!! |
VASKO | 12:6f63e376c0aa | 14 | |
VASKO | 0:5152e3f9df72 | 15 | while(1) { |
VASKO | 15:30e45bd5902e | 16 | if ( RxBuffFull == 1 ) { |
VASKO | 15:30e45bd5902e | 17 | RxBuffFull = 0; |
VASKO | 15:30e45bd5902e | 18 | // if(GetCheckSum(&RxBuff.cmd) == RxBuff.cs){ |
VASKO | 15:30e45bd5902e | 19 | StartTx(&RxBuff.cmd); |
VASKO | 15:30e45bd5902e | 20 | StartTx(&RxBuff.cmd); |
VASKO | 15:30e45bd5902e | 21 | if( StartTx(&RxBuff.cmd) == StartOK)myled = 0 ;else myled = 1; |
VASKO | 15:30e45bd5902e | 22 | // myled = 0; |
VASKO | 15:30e45bd5902e | 23 | // } else myled = 1; |
VASKO | 10:f7a320faef76 | 24 | } |
VASKO | 8:cad966c09853 | 25 | }//while(1) |
VASKO | 9:dcddb19ad551 | 26 | }//main |
VASKO | 9:dcddb19ad551 | 27 |