blob: 3d481a23aa0b62f8c0d088467c65e398a748aa3d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _JOVE_DEVICE_UART_H
#define _JOVE_DEVICE_UART_H 1
#include <stdint.h>
#include <stddef.h>
#include "object.h"
void uart_write(objdir_t *dir, uint64_t entryi, const char *s, size_t w);
#endif
|