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.
bufferCirculaire.cpp
00001 #include "bufferCirculaire.h" 00002 00003 //-----------------------------TX-----------------------------// 00004 int txHead; 00005 int txTail; 00006 char txBuffer[BUFFER_SIZE]; 00007 00008 void txAddOne(char value) 00009 { 00010 00011 } 00012 00013 char txGetOne() 00014 { 00015 00016 } 00017 00018 int txRemainingSize() 00019 { 00020 00021 } 00022 00023 00024 //-----------------------------RX-----------------------------// 00025 int rxHead; 00026 int rxTail; 00027 char rxBuffer[BUFFER_SIZE]; 00028 00029 void rxAddOne(char value) 00030 { 00031 00032 } 00033 00034 char rxGetOne() 00035 { 00036 00037 } 00038 00039 unsigned char isDataAvailable() 00040 { 00041 00042 } 00043 00044 00045 int rxRemainingSize() 00046 { 00047 00048 }
Generated on Thu Jul 28 2022 19:58:41 by
