123456789101112131415161718192021222324 |
- /*
- * File: serial.h
- * Author: david
- *
- * Created on April 12, 2021, 12:58 PM
- */
- #ifndef SERIAL_H
- #define SERIAL_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- void serial_print_bytes(const char *data, int len);
- void serial_print(const char *data);
- void serial_println(const char *data);
- #ifdef __cplusplus
- }
- #endif
- #endif /* SERIAL_H */
|