/* * 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