blob: f59bd36101103253e589c9c667f738fc3702472f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#include <Zumo32U4.h>
#include <Arduino.h>
#include <Wire.h>
#include "protocol.h"
#include "pid.h"
dui_state_t g_dui_target_state = {
.steer = 1.0f,
.speed = 1.0f,
.current_sign = DUI_SIGN_NONE,
.speed_mod = 1.f,
};
dui_state_t g_dui_current_state = {
.steer = 0.f,
.speed = 1.f,
.current_sign = DUI_SIGN_NONE,
.speed_mod = 1.f,
};
void setup() {
}
void loop() {
unsigned char cmd = 0x00;
while ((cmd = uart_read()))
handle_cmd(cmd, &g_dui_target_state);
apply_pid(&g_dui_target_state, &g_dui_current_state);
apply_state(&g_dui_current_state);
delay(10);
}
|