Subversion Repositories FlightCtrl

Rev

Rev 164 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 164 Rev 181
Line -... Line 1...
-
 
1
/*********************************************************************************************************************************
-
 
2
 *                                                                                                                                *
-
 
3
 * class representing the DebugData Structure                                                                                     *
-
 
4
 *                                                                                                                                *
-
 
5
 * Author:        Marcus -LiGi- Bueschleb                                                                                         *
-
 
6
 * Project-Start: 9/2007                                                                                                          *
-
 
7
 
-
 
8
 * Mailto:        ligi@smart4mobile.de                                                                                            *
-
 
9
 * Licence:       Creative Commons / Non Commercial                                                                               *
-
 
10
 * Big Up:        Holger&Ingo                                                                                                     *
-
 
11
 *********************************************************************************************************************************/
-
 
12
 
1
public class MKDebugData
13
public class MKDebugData
Line 2... Line 14...
2
 
14
 
Line 3... Line 15...
3
{
15
{
4
 
16
 
5
    int[] digital;
17
    int[] digital;
6
    int zyklen;
18
    int zyklen;
7
    int zeit;
19
    int zeit;
Line -... Line 20...
-
 
20
    int sekunden;
-
 
21
    int[] analog;
-
 
22
   
-
 
23
    public MKDebugData()
-
 
24
    {
-
 
25
        digital=new int[13];
-
 
26
        analog=new int[16];
-
 
27
        int i;
-
 
28
        for (i=0;i<13;i++)
-
 
29
            digital[i]=-1;
-
 
30
           
-
 
31
        zyklen=-1;
-
 
32
        zeit= -1;
-
 
33
        sekunden= -1;
-
 
34
 
-
 
35
        for (i=0;i<16;i++)
Line 8... Line 36...
8
    int sekunden;
36
            analog[i]=-1;
9
    int[] analog;
37
 
10
   
38
    }
11
 
39