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.
ComQueue.h
- Committer:
- gert_lauritsen
- Date:
- 2015-11-05
- Revision:
- 0:c9f3777fe0b4
File content as of revision 0:c9f3777fe0b4:
//------------------------------------------------------------------------------------
// : Headerfile
// Title : General Q
// Filename : Queue.h
// Author : Gert Lauritsen
// Origin Date : 21/04/2015
// Version : 1.000
// Compiler : Keil
// Target :
// Notes : None
//
//------------------------------------------------------------------------------------
//----------------------- MODULE REVISION LOG ----------------------------------------
//
// Date Software Version Initials Description
// 21/04/2015 1.0.0.0 GL Module Created.
//
//------------------------------------------------------------------------------------
// @file Queue.h
// @brief This module contains the
// A queue function for serial communiaction
//
//------------------------------------------------------------------------------------
// Includes
//------------------------------------------------------------------------------------
#ifndef Queue_h
#define Queue_h
extern unsigned char Q_crc;
extern void init_q(void);
extern unsigned char Put(unsigned char ch);
extern unsigned char Put16(unsigned int Wch);
extern unsigned char Get(unsigned char *ch);
#endif