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.
Fork of LGstaandart by
Diff: host/Source/App/console.h
- Revision:
- 23:12e6183f04d4
diff -r bc8c1cec3da6 -r 12e6183f04d4 host/Source/App/console.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/host/Source/App/console.h Wed Feb 03 10:44:42 2016 +0300 @@ -0,0 +1,20 @@ + +extern void UART0_Init (void); +extern int UART0_SendByte (int ucData); +extern void ClearBuFF(void); +extern void SendToBuff(unsigned char *input, unsigned int size); +extern void SendToBuffStr( char *s); +extern void TakeFromBuff(void); +extern void ClearBuffIn(void); + +extern void BuffDataReady(void); + + +extern unsigned int BuffOut[]; +extern unsigned int BuffIn[]; +extern unsigned int InputIndexBO; +extern unsigned int OutputIndexBO; +extern unsigned int InputIndexBI; +extern unsigned int OutputIndexBI; +extern unsigned int OLD_OutputIndex; +extern void UART0_SendString (char *s);
