Blame view

Robot/serial.h 134 Bytes
d2f14e3c   pfrison   Debut programme a...
1
2
3
4
5
6
7
8
  #ifndef SERIAL
  #define SERIAL
  
  void init_serial(int speed);
  void send_serial(unsigned char c);
  unsigned char get_serial(void);
  
  #endif