Subversion Repositories FlightCtrl

Rev

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

Rev 787 Rev 789
Line 50... Line 50...
50
extern void DefaultKonstanten1(void);
50
extern void DefaultKonstanten1(void);
51
extern void DefaultKonstanten2(void);
51
extern void DefaultKonstanten2(void);
Line 52... Line 52...
52
 
52
 
53
struct acc_neutral_struct
53
struct acc_neutral_struct
54
{
54
{
55
        volatile int X;
55
        int X;
56
        volatile int Y;
56
        int Y;
57
        volatile float Z;
57
        float Z;
58
        volatile int C;
58
        int C;
Line 59... Line 59...
59
};
59
};
60
 
60