?lang_form? ?lang_select? ?lang_submit? ?lang_endform?
{HEADER END}
{BLAME START}

library

?curdirlinks? -

Blame information for rev 6

Line No. Rev Author Line
1 6 kaklik /*! \file edpdebug.h \brief Emerald Data Protocol Debug Functions. */
2 //*****************************************************************************
3 //
4 // File Name : 'edpdebug.h'
5 // Title : Emerald Data Protocol Debug Functions
6 // Author : Pascal Stang - Copyright (C) 2003
7 // Created : 2003.09.20
8 // Revised : 2003.09.20
9 // Version : 0.1
10 // Target MCU : Atmel AVR series
11 // Editor Tabs : 4
12 //
13 // This code is distributed under the GNU Public License
14 // which can be found at http://www.gnu.org/licenses/gpl.txt
15 //
16 //*****************************************************************************
17  
18 #ifndef EDPDEBUG_H
19 #define EDPDEBUG_H
20  
21 #include "edp.h"
22  
23 // functions
24 u08 edpComposeCommand(u08 srcEdpAddr, u08* cmdBuffer);
25 void edpRunCommand(u08 destEdpAddr, u08 cmdLength, u08* cmdBuffer);
26  
27 // display functions
28 void edpDisplayCommand(u08 length, EdpCommand* edpCommand);
29 void edpDisplayReply(u08 response, EdpReply* edpReply);
30 //void edpDisplayReplyOld(u08 response, u08 replyLength, u08* replyData);
31  
32 #endif
{BLAME END}
{FOOTER START}

Powered by WebSVN v2.8.3