mirror of
https://github.com/peter-tanner/des-car-2022.git
synced 2024-11-30 09:00:21 +08:00
11 lines
227 B
C
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
|