Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
112 | mikeljo | 1 | #ifndef debug_h |
2 | #define debug_h |
||
3 | |||
4 | void display_debug(void); |
||
5 | |||
6 | struct str_DebugIn |
||
7 | { |
||
8 | unsigned char Digital[2]; |
||
9 | signed int Analog[34]; // Debugwerte |
||
10 | }; |
||
11 | |||
12 | struct str_DebugIn DebugIn; |
||
13 | |||
14 | |||
15 | //struct str_DebugIn_Text |
||
16 | //{ |
||
17 | // unsigned char Texte[16]; |
||
18 | //}; |
||
19 | |||
20 | //struct str_DebugIn_Text DebugInText[32]; |
||
21 | |||
22 | unsigned char DebugInText[32][16]; |
||
23 | |||
24 | //extern struct str_DebugIn *p_buffer; |
||
25 | |||
26 | #endif |