mirror of
https://git.etud.insa-toulouse.fr/boujon/voilier-team-1.git
synced 2025-06-08 16:00:49 +02:00
11 lines
182 B
C
11 lines
182 B
C
#ifndef REMOTE_H
|
|
#define REMOTE_H
|
|
#include "uart.h"
|
|
|
|
//XBEE 9600 baud, zero parite, 1 bit de stop,
|
|
|
|
void remote(uint8_t data);
|
|
void initRemote(void);
|
|
void testRemote(void);
|
|
|
|
#endif
|