mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-23 15:28:44 +08:00
ecf2d82159
* Synchronize the code of the rt mart branch to the master branch. * TTY device * Add lwP code from rt-smart * Add vnode in DFS, but DFS will be re-write for rt-smart * There are three libcpu for rt-smart: * arm/cortex-a, arm/aarch64 * riscv64 Co-authored-by: Rbb666 <zhangbingru@rt-thread.com> Co-authored-by: zhkag <zhkag@foxmail.com>
44 lines
1.5 KiB
C
44 lines
1.5 KiB
C
/*
|
|
* =====================================================================================
|
|
*
|
|
* Filename: logo.h
|
|
*
|
|
* Description: For show bootup stage logo.
|
|
*
|
|
* Version: 2.0
|
|
* Create: 2017-11-03 11:35:27
|
|
* Revision: none
|
|
* Compiler: gcc version 6.3.0 (crosstool-NG crosstool-ng-1.23.0)
|
|
*
|
|
* Author: caozilong@allwinnertech.com
|
|
* Organization: BU1-PSW
|
|
* Last Modified: 2017-11-03 11:38:15
|
|
*
|
|
* =====================================================================================
|
|
*/
|
|
|
|
#ifndef LOGO_H
|
|
#define LOGO_H
|
|
|
|
/* ----------------------------------------------------------------------------*/
|
|
/** @brief release_logo_buf <release bootlogo buffer, execute in shell.> */
|
|
/* ----------------------------------------------------------------------------*/
|
|
void release_logo_buf(void);
|
|
|
|
/* ----------------------------------------------------------------------------*/
|
|
/** @brief show_logo <trigger show RGB logo> */
|
|
/* ----------------------------------------------------------------------------*/
|
|
void show_logo(void);
|
|
|
|
/* ----------------------------------------------------------------------------*/
|
|
/** @brief close_logo <close logo display > */
|
|
/* ----------------------------------------------------------------------------*/
|
|
void close_logo(void);
|
|
|
|
/* ----------------------------------------------------------------------------*/
|
|
/** @brief show_cvbs <trigger show cvbs input > */
|
|
/* ----------------------------------------------------------------------------*/
|
|
void show_cvbs(void);
|
|
|
|
#endif /*LOGO_H*/
|