Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
stemwin
探索者407+stemwin 无法init
发布于 2019-04-29 23:13:34 浏览:2267
订阅该版
LCD 驱动移植完成 ![1556550459(1).jpg](https://oss-club.rt-thread.org/uploads/201904/29/230808tlauxzlzbbbb2kpo.jpg) 软件包用的这个:[STemWin](https://packages.rt-thread.org/itemDetail.html?package=STemWin) 运行到`GUI_Init()`就执行不下去了 ![卡住.jpg](https://oss-club.rt-thread.org/uploads/201904/29/230549zsdgsua0cy9llccd.jpg) 不知道怎么放源码 一下 GUI_TEST.C ```c #include "GUI_Test.h" #include "GUI.h" #include "GUIDemo.h" static void test_thread(void *param) { unsigned int rt_err; CRC_HandleTypeDef CrcHandle; CrcHandle.Instance = CRC; HAL_CRC_Init(&CrcHandle); rt_err=GUI_Init(); rt_kprintf("ST EMWIM INIT FAEILED "); GUIDEMO_Main(); } static int gui_test_init(void) { rt_thread_t tid; tid = rt_thread_create("gui_test", test_thread, RT_NULL, 2048, 21, 10); if (tid != RT_NULL) rt_thread_startup(tid); return RT_EOK; } INIT_APP_EXPORT(gui_test_init); ``` 以下`GUIconf.c`,可能和ram分配有关 ```c /********************************************************************* * SEGGER Microcontroller GmbH & Co. KG * * Solutions for real time microcontroller applications * ********************************************************************** * * * (c) 1996 - 2017 SEGGER Microcontroller GmbH & Co. KG * * * * Internet: [www.segger.com](www.segger.com) Support: [email]support@segger.com[/email] * * * ********************************************************************** ** emWin V5.44 - Graphical user interface for embedded applications ** All Intellectual Property rights in the Software belongs to SEGGER. emWin is protected by international copyright laws. Knowledge of the source code may not be used to write a similar product. This file may only be used in accordance with the following terms: The software has been licensed to STMicroelectronics International N.V. a Dutch company with a Swiss branch and its headquarters in Plan- les-Ouates, Geneva, 39 Chemin du Champ des Filles, Switzerland for the purposes of creating libraries for ARM Cortex-M-based 32-bit microcon_ troller products commercialized by Licensee only, sublicensed and dis_ tributed under the terms and conditions of the End User License Agree_ ment supplied by STMicroelectronics International N.V. Full source code is available at: [www.segger.com](www.segger.com) We appreciate your understanding and fairness. ---------------------------------------------------------------------- File : GUIConf.c Purpose : Display controller initialization ---------------------------END-OF-HEADER------------------------------ */ /** ****************************************************************************** * @attention * *
© Copyright (c) 2018 STMicroelectronics. * All rights reserved.
* * This software component is licensed by ST under Ultimate Liberty license SLA0044, * the "License"; You may not use this file except in compliance with the License. * You may obtain a copy of the License at: * [http://www.st.com/SLA0044](http://www.st.com/SLA0044) * ****************************************************************************** */ #include "GUI.h" /********************************************************************* * * Defines * ********************************************************************** */ // // Define the available number of bytes available for the GUI // #define GUI_NUMBYTES (PKG_STEMWIN_MEM_SIZE * 1024) /* Define the average block size */ #define GUI_BLOCKSIZE 0x80 /********************************************************************* * * Public code * ********************************************************************** */ /********************************************************************* * * GUI_X_Config * * Purpose: * Called during the initialization process in order to set up the * available memory for the GUI. */ void GUI_X_Config(void) { // // 32 bit aligned memory area // static U32 aMemory[GUI_NUMBYTES / 4]; // // Assign memory to emWin // GUI_ALLOC_AssignMemory(aMemory, GUI_NUMBYTES); GUI_ALLOC_SetAvBlockSize(GUI_BLOCKSIZE); // // Set default font // GUI_SetDefaultFont(GUI_FONT_6X8); } /*************************** End of file ****************************/ ```
查看更多
7
个回答
默认排序
按发布时间排序
yqiu
2019-04-30
这家伙很懒,什么也没写!
这类问题建议跟软件包作者沟通下。
Cfly
认证专家
2019-04-30
这家伙很懒,什么也没写!
CUBE开启CRC了嘛
RT-WH
2019-04-30
这家伙很懒,什么也没写!
问题 已解决 是MSP init函数没有实现导致
RT-WH
2019-04-30
这家伙很懒,什么也没写!
感谢 yqiiu 感谢软件包作者的热心回复
someone_y
2019-06-06
这家伙很懒,什么也没写!
>问题 已解决 是MSP init函数没有实现导致 同样的问题,MSP init 是哪个地方,可以说明一下吗?谢谢
someone_y
2019-06-06
这家伙很懒,什么也没写!
>同样的问题,MSP init 是哪个地方,可以说明一下吗?谢谢 找到了,虽然开启了CRC,但是忘记开启CRC时钟导致。
moonwind
2021-10-14
这家伙很懒,什么也没写!
我遇到同样的问题,CRC已开启也未解决,请指教@RT-WH
撰写答案
登录
注册新账号
关注者
0
被浏览
2.3k
关于作者
RT-WH
这家伙很懒,什么也没写!
提问
19
回答
53
被采纳
1
关注TA
发私信
相关问题
1
在stemwin中使用事件集发生断言错误,怎么解决?
2
emwin 报警告怎么解决
3
在系统上移植stemwin,在gui_init()中线程终止
4
struct rt_device_graphic_ops使用方法请教
5
stm32f429 + RTT STemwin移植失败
6
添加软件包一直失败 Stemwin失败 组件和驱动都增加在哪
7
关于rtthread中STemWin中GUI_OS的支持问题,画面无法显示
8
STM32H743移植emwin出现的问题
9
移植stemwin 画面不显示
10
Stemwin编译出错
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
使用百度AI助手辅助编写一个rt-thread下的ONVIF设备发现功能的功能代码
2
RT-Thread 发布 EtherKit开源以太网硬件!
3
rt-thread使用cherryusb实现虚拟串口
4
《C++20 图形界面程序:速度与渲染效率的双重优化秘籍》
5
《原子操作:程序世界里的“最小魔法单位”解析》
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
WIZnet_W5500
ota在线升级
UART
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
at_device
ulog
C++_cpp
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
张世争
8
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
KunYi
6
个答案
1
次被采纳
本月文章贡献
程序员阿伟
6
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
Betrayer
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部