serial.h 153 B

12345678
  1. #ifndef _SERIAL_H__
  2. #define _SERIAL_H__
  3. #include "libs/types.h"
  4. void serial_init(void);
  5. void serial_write(u8 *data, int len);
  6. #endif /* _SERIAL_H__ */