|
默认生成的工程是没有开的。
- /*********************************************************************
- *
- * _NumVars
- */
- static unsigned _NumVars = 0;
- /*********************************************************************
- *
- * Multibuffering
- */
- static U8 _MultibufEnable = 1;
- /*********************************************************************
- *
- * Static code
- *
- **********************************************************************
- */
- /*********************************************************************
- *
- * _InitText
- */
- static void _InitText(void) {
- //
- // Empty, because application does not contain any text
- //
- }
- /*********************************************************************
- *
- * Public code
- *
- **********************************************************************
- */
- /*********************************************************************
- *
- * APPW_X_Setup
- */
- void APPW_X_Setup(void) {
- APPW_SetpfInitText(_InitText);
- //APPW_X_FS_Init();
- APPW_MULTIBUF_Enable(_MultibufEnable);
- APPW_SetData(_apRootList, _NumScreens, _aVarList, _NumVars);
- }
复制代码
|
|