Files
cdba/console.h
Bjorn Andersson 776f8c30fb console: Add send_break support
Add support for send_break to the generic console implementation.

Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
2021-01-22 18:04:58 -06:00

11 lines
235 B
C

#ifndef __CONSOLE_H__
#define __CONSOLE_H__
#include "device.h"
void console_open(struct device *device);
int console_write(struct device *device, const void *buf, size_t len);
void console_send_break(struct device *device);
#endif