Subversion Repositories FlightCtrl

Rev

Rev 1612 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1612 Rev 1821
Line 1... Line 1...
1
typedef struct {
1
typedef struct {
2
  int16_t(*getPitch)(void);
2
        int16_t(*getPitch)(void);
3
  int16_t(*getRoll)(void);
3
        int16_t(*getRoll)(void);
4
  int16_t(*getYaw)(void);
4
        int16_t(*getYaw)(void);
5
  uint16_t(*getThrottle)(void);
5
        uint16_t(*getThrottle)(void);
6
  uint8_t isSignalGood(void);
6
        uint8_t isSignalGood(void);
7
  uint8_t isSignalUnreadable(void);
7
        uint8_t isSignalUnreadable(void);
8
} t_control;
8
} t_control;