serial.h 344 B

123456789101112131415161718192021222324
  1. /*
  2. * File: serial.h
  3. * Author: david
  4. *
  5. * Created on April 12, 2021, 12:58 PM
  6. */
  7. #ifndef SERIAL_H
  8. #define SERIAL_H
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. void serial_print_bytes(const char *data, int len);
  13. void serial_print(const char *data);
  14. void serial_println(const char *data);
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18. #endif /* SERIAL_H */