You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
361 B

/*
* Copyright (c) Hisilicon Technologies Co., Ltd. 2014-2020. All rights reserved.
* Description: console.h
* Author: SmartMedia_BSP
* Create: 2014-06-04
*/
#ifndef CONSOLEH
#define CONSOLEH
struct console {
int (*getchar)(void);
void (*putchar)(unsigned int c);
int (*tstchar)(void);
};
void console_init(struct console *console);
#endif