Files

12 lines
212 B
C
Raw Permalink Normal View History

2026-07-14 17:40:30 -05:00
#ifndef D_SERIAL_H
#define D_SERIAL_H
#include <stdint.h>
void init_serial();
void print_serial_hex(uint32_t val);
void print_serial(const char* str);
void write_serial(char a);
int is_transmit_empty();
#endif