summaryrefslogtreecommitdiff
path: root/supervisor/serial.h
diff options
context:
space:
mode:
Diffstat (limited to 'supervisor/serial.h')
-rw-r--r--supervisor/serial.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/supervisor/serial.h b/supervisor/serial.h
index 066886303..e85231c6c 100644
--- a/supervisor/serial.h
+++ b/supervisor/serial.h
@@ -35,14 +35,14 @@
#ifdef CIRCUITPY_BOOT_OUTPUT_FILE
#include "lib/oofatfs/ff.h"
-extern FIL* boot_output_file;
+extern FIL *boot_output_file;
#endif
void serial_early_init(void);
void serial_init(void);
-void serial_write(const char* text);
+void serial_write(const char *text);
// Only writes up to given length. Does not check for null termination at all.
-void serial_write_substring(const char* text, uint32_t length);
+void serial_write_substring(const char *text, uint32_t length);
char serial_read(void);
bool serial_bytes_available(void);
bool serial_connected(void);