1 /* 2 * ===================================================================================== 3 * 4 * Filename: logo.h 5 * 6 * Description: For show bootup stage logo. 7 * 8 * Version: 2.0 9 * Create: 2017-11-03 11:35:27 10 * Revision: none 11 * Compiler: gcc version 6.3.0 (crosstool-NG crosstool-ng-1.23.0) 12 * 13 * Author: caozilong@allwinnertech.com 14 * Organization: BU1-PSW 15 * Last Modified: 2017-11-03 11:38:15 16 * 17 * ===================================================================================== 18 */ 19 20 #ifndef LOGO_H 21 #define LOGO_H 22 23 /* ----------------------------------------------------------------------------*/ 24 /** @brief release_logo_buf <release bootlogo buffer, execute in shell.> */ 25 /* ----------------------------------------------------------------------------*/ 26 void release_logo_buf(void); 27 28 /* ----------------------------------------------------------------------------*/ 29 /** @brief show_logo <trigger show RGB logo> */ 30 /* ----------------------------------------------------------------------------*/ 31 void show_logo(void); 32 33 /* ----------------------------------------------------------------------------*/ 34 /** @brief close_logo <close logo display > */ 35 /* ----------------------------------------------------------------------------*/ 36 void close_logo(void); 37 38 /* ----------------------------------------------------------------------------*/ 39 /** @brief show_cvbs <trigger show cvbs input > */ 40 /* ----------------------------------------------------------------------------*/ 41 void show_cvbs(void); 42 43 #endif /*LOGO_H*/ 44