您的位置 首页 IOT

STM32学习记载16 ucosii+UCGUI

主要介绍下UCGUI的修改:1:GUI_X_ucos.c文件夹,第80行,修改为:/**********************************************************

首要介绍下UCGUI的修正:

1:GUI_X_ucos.c文件夹,第80行,修正为:
/*
*********************************************************************************************************
* GUI_X_ExecIdle()
*********************************************************************************************************
*/
void GUI_X_ExecIdle (void)
{
// OS_X_Delay(1);
OSTimeDly(50);//自己修正的
}
2:GUI_X_ucos.c最终增加以下函数,从GUI_X.c文件复制的,工程中不需要增加GUI_X
//下面是从GUI_X复制的
/*********************************************************************
*
* Logging: OS dependent
Note:
Logging is used in higher debug levels only. The typical target
build does not use logging and does therefor not require any of
the logging routines below. For a release build without logging
the routines below may be eliminated to save some space.
(If the linker is not function aware and eliminates unreferenced
functions automatically)
*/
void GUI_X_Log (const char *s) { GUI_USE_PARA(s); }
void GUI_X_Warn (const char *s) { GUI_USE_PARA(s); }
void GUI_X_ErrorOut(const char *s) { GUI_USE_PARA(s); }
工程文件截图如下:

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/yingyong/iot/272476.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部