Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
DIY综合交流区
REALTOUCH 加载应用出错
发布于 2013-07-13 09:05:51 浏览:3687
订阅该版
平台用的是STM32F4 DISCOVERY + ILI9481 己正常显示主界面 直接在GITHUB下CLONE的代码用SCONS生成MDK一直不成功,提示NO MODULE NAMED BUILDING 但同样GITHUB下CLONE的RT-THREAD里的STM32F40X则没问题(现在SCONS还不乍会)。SO,自己那MDK建了个工程 加入相关代码 不知有没漏了 ``` | / - RT - Thread Operating System / | 1.1.0 build Jul 13 2013 2006 - 2012 Copyright by rt-thread team finsh />SD Card init OK sd0 mount to / sd0 total size: 954 MB sd0 free size: 953 MB LCD Device Code id0 is: 0x0000 LCD Device Code id1 is: 0x0000 LCD Device Code id2 is: 0x0000 LCD Device Code id3 is: 0x0004 LCD Device Code id4 is: 0x0080 LCD Device Code id5 is: 0x0081 setup_load RTGUI: creating the server app 20003e70. 97%touch->x:1483 touch->y:4980 touch down: (244, 93) touch up: (244, 93) Module: can't find _GLOBAL_OFFSET_TABLE_ in kernel symbol table Module: can't find rtgui_filelist_view_create in kernel symbol table touch->x:1440 touch->y:825 touch down: (236, 183) touch up: (236, 183) Module: access /programs/label/label.mo failed touch->x:1428 touch->y:1075 touch down: (233, 251) touch up: (233, 251) Module: can't find rand in kernel symbol table Module: can't find memset in kernel symbol table Module: can't find srand in kernel symbol table touch up: (233, 251) touch up: (233, 251) touch->x:994 touch->y:780 touch down: (152, 170) touch up: (152, 170) Module: access /programs/iconlist/iconlist.mo failed touch->x:990 touch->y:534 touch down: (151, 103) touch up: (151, 103) Module: can't find _GLOBAL_OFFSET_TABLE_ in kernel symbol table Module: can't find rtgui_button_create in kernel symbol table ``` ```/* RT-Thread config file */ #ifndef __RTTHREAD_CFG_H__ #define __RTTHREAD_CFG_H__ /* SECTION: RT_DEBUG */ /* Thread Debug */ #define RT_DEBUG // #define RT_DEBUG_MEM 1 /* RT_NAME_MAX*/ #define RT_NAME_MAX 8 /* RT_ALIGN_SIZE*/ #define RT_ALIGN_SIZE 4 /* PRIORITY_MAX */ #define RT_THREAD_PRIORITY_MAX 32 /* Tick per Second */ #define RT_TICK_PER_SECOND 10000 /* The stack size of idle thread */ #define IDLE_THREAD_STACK_SIZE 1024 /* Using Hook */ #define RT_USING_HOOK /* Thread stack over flow detect 线程堆栈溢出检测*/ #define RT_USING_OVERFLOW_CHECK /* Using Software Timer */ // #define RT_USING_TIMER_SOFT #define RT_TIMER_THREAD_PRIO 4 #define RT_TIMER_THREAD_STACK_SIZE 512 #define RT_TIMER_TICK_PER_SECOND 200 /* SECTION: IPC Inter-Process Communication 进程间通信 */ /* Using IPC in Device Driver Framework */ #define RT_USING_DEVICE_IPC /* Using Semaphore 信号*/ #define RT_USING_SEMAPHORE /* Using Mutex 互斥*/ #define RT_USING_MUTEX /* Using Event 事件*/ #define RT_USING_EVENT /* Using MailBox 邮箱*/ #define RT_USING_MAILBOX /* Using Message Queue 消息队列*/ #define RT_USING_MESSAGEQUEUE /* SECTION: Memory Management 内存管理*/ /* Using Memory Pool Management 静态内存池管理*/ #define RT_USING_MEMPOOL /* Using Dynamic Heap Management 动态内存堆管理*/ #define RT_USING_HEAP /* Using Small MM 小内存管理*/ #define RT_USING_SMALL_MEM #define RT_USING_MODULE #define RT_USING_PTHREADS //////////////////////////////////////////////////////////////// /* SECTION: Device System 设备系统*/ /* Using Device System */ #define RT_USING_DEVICE /* Using Serial Device Driver Framework */ #define RT_USING_SERIAL #define RT_USING_USART #define RT_UART_RX_BUFFER_SIZE 64 /* USB Host stack */ // #define RT_USING_USB_HOST /* Using ADK class */ // #define RT_USB_CLASS_ADK /* Using AUDIO_PCM270X class */ // #define RT_USB_CLASS_AUDIO_PCM270X /* SECTION: Device SDIO */ #define RT_USING_SDIO #define RT_USING_SPI //////////////////////////////////////////////////////////////// /* Using components manager */ #define RT_USING_COMPONENTS_INIT /* SECTION: Console options 控制台选项*/ #define RT_USING_CONSOLE /* the buffer size of console*/ #define RT_CONSOLEBUF_SIZE 128 /* SECTION: finsh, a C-Express shell */ #define RT_USING_FINSH /* Using symbol table */ #define FINSH_USING_SYMTAB /* Keeping description */ #define FINSH_USING_DESCRIPTION /* stack size for finsh thread */ #define FINSH_THREAD_STACK_SIZE 1024 /* SECTION: device filesystem */ #define RT_USING_DFS /* Using working directory */ #define DFS_USING_WORKDIR /* the max number of mounted filesystem */ #define DFS_FILESYSTEMS_MAX 2 /* the max number of opened files */ #define DFS_FD_MAX 16 #define RT_USING_DFS_ELMFAT /* Reentrancy (thread safe) of the FatFs module. */ #define RT_DFS_ELM_REENTRANT /* Number of volumes (logical drives) to be used. */ #define RT_DFS_ELM_DRIVES 2 #define RT_DFS_ELM_USE_LFN 2 #define RT_DFS_ELM_MAX_LFN 255 #define RT_DFS_ELM_CODE_PAGE 936 #define RT_DFS_ELM_CODE_PAGE_FILE /* Maximum sector size to be handled. */ #define RT_DFS_ELM_MAX_SECTOR_SIZE 512 /* SECTION: lwip, a lighwight TCP/IP protocol stack */ // #define RT_USING_LWIP // #define RT_USING_WIFI /* LwIP uses RT-Thread Memory Management */ #define RT_LWIP_USING_RT_MEM /* Enable ICMP protocol*/ #define RT_LWIP_ICMP /* Enable UDP protocol*/ #define RT_LWIP_UDP /* Enable TCP protocol*/ #define RT_LWIP_TCP /* Enable DNS */ #define RT_LWIP_DNS /* Maximal number of buffers in the pbuf pool */ #define RT_LWIP_PBUF_NUM 4 /* the number of simulatenously active TCP connections*/ #define RT_LWIP_TCP_PCB_NUM 5 /* the number of simultaneously queued TCP */ #define RT_LWIP_TCP_SEG_NUM 4 /* TCP sender buffer space */ #define RT_LWIP_TCP_SND_BUF 8192 /* TCP receive window. */ #define RT_LWIP_TCP_WND 8192 /* Enable DHCP client to get IP address */ #define RT_LWIP_DHCP /* tcp thread options */ /* the thread priority of TCP thread */ #define RT_LWIP_TCPTHREAD_PRIORITY 12 /* the mail box size of TCP thread to wait for */ #define RT_LWIP_TCPTHREAD_MBOX_SIZE 8 /* the thread stack size of TCP thread */ #define RT_LWIP_TCPTHREAD_STACKSIZE 4096 /* the thread priority of ethnetif thread */ #define RT_LWIP_ETHTHREAD_PRIORITY 14 /* the mail box size of ethnetif thread to wait for */ #define RT_LWIP_ETHTHREAD_MBOX_SIZE 8 /* the stack size of ethnetif thread */ #define RT_LWIP_ETHTHREAD_STACKSIZE 4096 /* ip address of target IP地址 192.168.1.110*/ #define RT_LWIP_IPADDR0 192 #define RT_LWIP_IPADDR1 168 #define RT_LWIP_IPADDR2 137 #define RT_LWIP_IPADDR3 120 /* gateway address of target 网关地址 192.168.1.1*/ #define RT_LWIP_GWADDR0 192 #define RT_LWIP_GWADDR1 168 #define RT_LWIP_GWADDR2 137 #define RT_LWIP_GWADDR3 1 /* mask address of target */ #define RT_LWIP_MSKADDR0 255 #define RT_LWIP_MSKADDR1 255 #define RT_LWIP_MSKADDR2 255 #define RT_LWIP_MSKADDR3 0 // #define DNS_SERVER_ADDRESS inet_addr("208.67.222.222") /* resolver1.opendns.com */ /* SECTION: RTGUI, a graphic user interface */ #define RT_USING_RTGUI /* Maximal size of RTGUI object name length */ #define RTGUI_NAME_MAX 16 /* Support 16 weight font" default */ // #define RTGUI_USING_FONT12 /* Support 12 weight font */ #define RTGUI_USING_FONT16 /* Support Chinese font */ #define RTGUI_USING_FONTHZ /* Using DFS as file interface */ #define RTGUI_USING_DFS_FILERW /* Using font file as Chinese font */ #define RTGUI_USING_HZ_FILE /* Using Chinese bitmap font */ // #define RTGUI_USING_HZ_BMP /* Using small size in RTGUI */ // #define RTGUI_USING_SMALL_SIZE /* Using mouse cursor in RTGUI */ // #define RTGUI_USING_MOUSE_CURSOR /* Using xpm image in RTGUI */ #define RTGUI_IMAGE_XPM /* Using jpeg image in RTGUI */ #define RTGUI_IMAGE_JPEG /* Using png image in RTGUI */ #define RTGUI_IMAGE_PNG /* Using bmp image in RTGUI */ #define RTGUI_IMAGE_BMP /* Using notebook image in RTGUI */ #define RTGUI_USING_NOTEBOOK_IMAGE /* Using hardware cursor in RTGUI */ #define RTGUI_USING_HW_CURSOR #endif ```
查看更多
3
个回答
默认排序
按发布时间排序
bernard
2013-07-13
这家伙很懒,什么也没写!
建议还是从原生的realtouch开始,否则会被建立环境给弄晕的。
begehau
2013-07-22
这家伙很懒,什么也没写!
试试将例程中SConstruct文件中的 RTT_ROOT = os.path.join(Dir('#').get_abspath(), 'rt-thread') 替换成 RTT_ROOT = os.path.normpath(os.getcwd() + '/../../../rt-thread')
撰写答案
登录
注册新账号
关注者
0
被浏览
3.7k
关于作者
hoverxx
这家伙很懒,什么也没写!
提问
7
回答
5
被采纳
0
关注TA
发私信
相关问题
1
[项目]搞个开源的硬件项目
2
硬件计划贴,及时更新,欢迎提意见
3
软件计划贴,及时更新,欢迎提意见::WMA,MOUNT,LWIP等问题急需解决.
4
MMS协议
5
定点的wma解压库-libwma
6
QQ群记录 [20090821]
7
STM32网络收音机PCB报名征集
8
第一版调试记录
9
第二版硬件讨论
10
RADIO项目相关模块规格--欢迎大家自己做板时规格与此兼容,减少重复劳动
推荐文章
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
UART
ota在线升级
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
ulog
C++_cpp
at_device
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
a1012112796
13
个答案
2
次被采纳
张世争
9
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
本月文章贡献
程序员阿伟
7
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
3
次点赞
ThinkCode
1
篇文章
1
次点赞
Betrayer
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部