ENSC3020-ELEC3020-des-car-2022/steering.h
Peter e65b30830e New tree because of the TARGET_POSITION macro. Original is at
http://github.com/Alphurious007/DES. Copy of the `peterus` branch which
has my code. Original was adapted from MoBot but I have added many
changes and replaced many parts so it is almost completely different.
2022-10-24 20:50:42 +08:00

11 lines
227 B
C

#ifndef STEERING_H
#define STEERING_H
#include <inttypes.h>
#include "parameters.h"
#include "util.h"
#include "steering.cpp"
extern inline void diff_drive(DRIVING_DIRECTION drive, STEERING_DIRECTION steer);
#endif