aboutsummaryrefslogtreecommitdiff
path: root/robot/mode_dirc.c
blob: 429d1e195abf7a7ac8af23c4f4d188c2c24a1cf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "mode_dirc.h"
#include "../shared/util.h"
#include "hypervisor.h"
#include "io.h"
#include "modes.h"
#include "orangutan_shim.h"

#include "../shared/errcatch.h"
#include <string.h>

int16_t g_w2_mode_dirc_motor_l = 0;
int16_t g_w2_mode_dirc_motor_r = 0;

void w2_mode_dirc() {
	set_motors(g_w2_mode_dirc_motor_l, g_w2_mode_dirc_motor_r);
}