loops, boot-time initialisation, option to run without attached UART. And.. it flies!
11 lines
167 B
C
11 lines
167 B
C
/* stick.h */
|
|
|
|
#include "types.h"
|
|
|
|
extern bool armed;
|
|
|
|
extern unsigned int stick_counter;
|
|
|
|
void stick_input(void);
|
|
void stick_update(float x, float y, float omega_z);
|