blob: 12ecbd791c7e3ad4979a37b68039792d2761b5eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "protocol.h"
#define DUI_PINOUT_NICLA_TX 13
#define DUI_PINOUT_NICLA_RX 14
/** @brief non blocking read byte */
unsigned char uart_read();
/** @brief apply state to motors */
void apply_state(dui_state_t* state);
|