1234567891011121314151617181920 |
- #ifndef _TURNDETECTION_H_
- #define _TURNDETECTION_H_
- #include "main.h"
- #include "stdio.h"
- #include "atk_ms6050.h"
- #include <math.h>
- #include <stdint.h>
- extern uint8_t turnFlag;
- extern float previousYaw;
- extern int isTurning(void);
- #endif
|