Subversion Repositories Projects

Rev

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

Rev 1596 Rev 1801
Line 287... Line 287...
287
typedef struct {
287
typedef struct {
288
        u8 SettingsIndex;
288
        u8 SettingsIndex;
289
        paramset_t param;
289
        paramset_t param;
290
} __attribute__((packed)) paramset_serial;
290
} __attribute__((packed)) paramset_serial;
Line -... Line 291...
-
 
291
 
-
 
292
 
-
 
293
 
-
 
294
/*
-
 
295
 * MikroKopter 3D-Data struct
-
 
296
 * portions taken and adapted from
-
 
297
 * http://svn.mikrokopter.de/filedetails.php?repname=NaviCtrl&path=%2Ftags%2FV0.28o%2Fuart1.h
-
 
298
 */
-
 
299
typedef struct {
-
 
300
    s16 AngleNick;  // in 0.1 deg
-
 
301
    s16 AngleRoll;   // in 0.1 deg
-
 
302
    s16 Heading;    // in 0.1 deg
-
 
303
    u8 StickNick;
-
 
304
    u8 StickRoll;
-
 
305
    u8 StickYaw;
-
 
306
    u8 StickGas;
-
 
307
    u8 reserve[4];
-
 
308
} __attribute__((packed)) Data3D_t;
-
 
309
 
-
 
310
extern Data3D_t Data3D;
291
 
311