Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: nRF24L01P_Hello_World nRF24L01P
circularBuffer.h
00001 #ifndef CIRCULAR_BUFFER_H 00002 #define CIRCULAR_BUFFER_H 00003 00004 #define BUFFER_SIZE 128 00005 00006 //TX 00007 void cbTxSendMessage(char* message, int length); 00008 void cbTxAddOne(char value); 00009 char cbTxGetOne(); 00010 int cbTxRemainingSize(); 00011 int cbTxGetDataSize(); 00012 00013 //RX 00014 void cbRxAddOne(char value); 00015 char cbRxGetOne(); 00016 unsigned char cbRxIsDataAvailable(); 00017 int cbRxRemainingSize(); 00018 int cbRxGetDataSize(); 00019 00020 #endif
Generated on Wed Jul 13 2022 03:07:10 by
1.7.2