![]() |
|
|||
File indexing completed on 2025-05-11 08:22:49
0001 /* SPDX-License-Identifier: BSD-2-Clause */ 0002 0003 /** 0004 * @file 0005 * 0006 * @ingroup RTEMSBSPsARMCSB337 0007 * 0008 * @brief Public Interface for SED Video Controller Operations. 0009 */ 0010 0011 /** 0012 * @defgroup csb337_sed1356 SED Video Controller 0013 * 0014 * @ingroup RTEMSBSPsARMCSB337 0015 * 0016 * @brief Public Interface for SED Video Controller Operations. 0017 */ 0018 0019 /* 0020 * Public Interface for SED Video Controller Operations 0021 * 0022 * COPYRIGHT (c) 1989-2009. 0023 * On-Line Applications Research Corporation (OAR). 0024 * 0025 * Modified by Fernando Nicodemos <fgnicodemos@terra.com.br> 0026 * from NCB - Sistemas Embarcados Ltda. (Brazil) 0027 * 0028 * Redistribution and use in source and binary forms, with or without 0029 * modification, are permitted provided that the following conditions 0030 * are met: 0031 * 1. Redistributions of source code must retain the above copyright 0032 * notice, this list of conditions and the following disclaimer. 0033 * 2. Redistributions in binary form must reproduce the above copyright 0034 * notice, this list of conditions and the following disclaimer in the 0035 * documentation and/or other materials provided with the distribution. 0036 * 0037 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 0038 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 0039 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 0040 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 0041 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 0042 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 0043 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 0044 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 0045 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 0046 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 0047 * POSSIBILITY OF SUCH DAMAGE. 0048 */ 0049 0050 #ifndef __SED1356_h 0051 #define __SED1356_h 0052 0053 void sed_init(void); 0054 0055 int sed_frame_buffer_size(void); 0056 0057 void sed_clr_row(int char_row); 0058 0059 void sed_putchar(char c); 0060 0061 void sed_putstring(char *s); 0062 0063 void sed_clearscreen(void); 0064 0065 void sed_write_frame_buffer( 0066 uint32_t i, 0067 uint16_t wr16 0068 ); 0069 0070 #endif 0071 /* end of file */
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
![]() ![]() |