Graphics framework for GR-PEACH. When you use this program, we judge you have agreed to the following contents. https://developer.mbed.org/teams/Renesas/wiki/About-LICENSE
Dependents: ImageZoomInout_Sample ImageRotaion_Sample ImageScroll_Sample GR-PEACH_LCD_4_3inch_Save_to_USB ... more
ncg_register.h
00001 /****************************************************************************** 00002 * Copyright(c) 2010-2012 Renesas Electronics Corporation. All rights reserved. 00003 * 00004 * brief : NCG register read/write header. 00005 * 00006 * author : Renesas Electronics Corporation 00007 * 00008 * history: 2010.10.08 00009 * - Created the initial code. 00010 * 2012.08.22 00011 * - Updated coding format. 00012 * 00013 *******************************************************************************/ 00014 00015 #ifndef NCG_REGISTER_H 00016 #define NCG_REGISTER_H 00017 00018 #ifdef __cplusplus 00019 extern "C" { 00020 #endif 00021 00022 00023 /*============================================================================= 00024 * Definitions 00025 */ 00026 00027 00028 /*============================================================================= 00029 * Structures 00030 */ 00031 00032 00033 /*============================================================================= 00034 * Function prototyping 00035 */ 00036 00037 /* 00038 * Register read/write 00039 */ 00040 NCGuint32 00041 NCGSYS_ReadReg ( 00042 NCGuint32 ui32RegBase, 00043 NCGuint32 ui32Offset 00044 ); 00045 00046 NCGvoid 00047 NCGSYS_WriteReg ( 00048 NCGuint32 ui32RegBase, 00049 NCGuint32 ui32Offset, 00050 NCGuint32 ui32Value 00051 ); 00052 00053 NCGuint32 00054 NCGSYS_ModifyReg ( 00055 NCGuint32 ui32RegBase, 00056 NCGuint32 ui32Offset, 00057 NCGuint32 ui32Mask, 00058 NCGuint32 ui32Value 00059 ); 00060 00061 00062 #ifdef __cplusplus 00063 } 00064 #endif 00065 00066 #endif /* NCG_REGISTER_H */
Generated on Tue Jul 12 2022 11:15:02 by 1.7.2