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