Gert Lauritsen / ComLink
Revision:
0:c9f3777fe0b4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ComQueue.h	Thu Nov 05 12:47:33 2015 +0000
@@ -0,0 +1,40 @@
+//------------------------------------------------------------------------------------
+//                       :   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