Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
RT-Thread一般讨论
分享一份我的rtconfig.h文件
发布于 2015-12-16 10:05:43 浏览:2717
订阅该版
```c /******************************************************************************************** * RT-Thread configuration options * * Copyright (c) 19xx-20xx, HxxxFx Group Co.,Ltd. * All Rights Reserved * * File : rtconfig.h * Version : RT-Thread V2.0.2 * Author : Owen * Date : 2015-12-11 * Target : ST STM32F10x series * Compiler: Keil MDK-ARM uVision v4.72 * Brief : RT-Thread config file ********************************************************************************************/ #ifndef __RTTHREAD_CFG_H__ #define __RTTHREAD_CFG_H__ #ifdef __cplusplus extern "C" { #endif /******************************************************************************************** * Application specific definitions ********************************************************************************************/ /* Maximal size of kernel object name length */ #define RT_NAME_MAX ( 16 ) /* Alignment size for CPU architecture data access */ #define RT_ALIGN_SIZE ( 4 ) /* Maximal level of thread priority */ #define RT_THREAD_PRIORITY_MAX ( 32 ) /* OS tick per second */ #define RT_TICK_PER_SECOND ( 1000 ) /******************************************************************************************** * SECTION: RT_DEBUG ********************************************************************************************/ #define RT_DEBUG /* Kernel debug configuration */ #define RT_THREAD_DEBUG /* Thread debug enable */ #define RT_USING_OVERFLOW_CHECK /* Thread stack over flow detect */ #define RT_USING_INTERRUPT_INFO /* Show more interrupt description */ #define RT_USING_HOOK /* Using hook functions */ //#define RT_USING_MODULE /* Using module functions */ /* Using software timer which will start a thread to handle soft-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 ( 10 ) /******************************************************************************************** * SECTION: IPC ********************************************************************************************/ #define RT_USING_SEMAPHORE /* Using Semaphore */ #define RT_USING_MUTEX /* Using Mutex */ #define RT_USING_EVENT /* Using Event */ #define RT_USING_MAILBOX /* Using MailBox */ #define RT_USING_MESSAGEQUEUE /* Using Message Queue */ /******************************************************************************************** * SECTION: Memory management ********************************************************************************************/ #define RT_USING_MEMPOOL /* Using Memory Pool Management */ #define RT_USING_HEAP /* Using Dynamic Heap Management */ #define RT_USING_SMALL_MEM /* Optimizing for small memory */ //#define RT_USING_SLAB /* Using SLAB MM for large memory */ /******************************************************************************************** * SECTION: Components options ********************************************************************************************/ #define RT_USING_COMPONENTS_INIT /* Using RTT components */ /******************************************************************************************** * SECTION: Device system ********************************************************************************************/ #define RT_USING_DEVICE /* Using device driver framework */ #define RT_USING_DEVICE_IPC /* Using device communication */ //#define RT_USING_RTC /* Using RTC */ //#define RT_USING_ALARM /* Using alarm */ //#define RT_USING_MTD_NOR /* Using NOR flash */ //#define RT_USING_MTD_NAND /* Using NAND flash */ //#define RT_USING_USB_DEVICE /* Using USB device */ //#define RT_USING_USB_HOST /* Using USB host */ #define RT_USING_SERIAL /* Using Serial */ #define RT_USING_SPI /* Using SPI */ #define RT_USING_UART2 /* Using UART2 */ //#define RT_USING_I2C /* Using I2C */ //#define RT_USING_I2C_BITOPS /* Using I2C bit options */ //#define RT_USING_SDIO /* Using SDIO */ //#define RT_USING_WDT /* Using WacthDog */ //#define RT_USING_PIN /* Using PIN device */ /******************************************************************************************** * SECTION: Console options ********************************************************************************************/ #define RT_USING_CONSOLE #define RT_CONSOLEBUF_SIZE ( 128 ) /* The buffer size of console */ #define RT_CONSOLE_DEVICE_NAME "uart2" /* The device name for console */ /******************************************************************************************** * SECTION: Finsh, a C-Express shell ********************************************************************************************/ #define RT_USING_FINSH #define FINSH_USING_SYMTAB /* Using symbol table */ #define FINSH_USING_DESCRIPTION //#define FINSH_USING_HISTORY /* 支持方向键回溯历史指令 */ //#define FINSH_USING_MSH /* 支持传统shell模式 */ //#define FINSH_USING_MSH_ONLY /* 仅支持msh模式 */ /******************************************************************************************** * SECTION: Device file system ********************************************************************************************/ //#define RT_USING_DFS //#define RT_USING_DFS_ELMFAT #define RT_DFS_ELM_REENTRANT /* Reentrancy of the FatFs module */ #define RT_DFS_ELM_DRIVES ( 2 ) /* Number of volumes to be used */ #define RT_DFS_ELM_USE_LFN ( 1 ) #define RT_DFS_ELM_CODE_PAGE ( 936 ) #define RT_DFS_ELM_MAX_LFN ( 255 ) #define RT_DFS_ELM_MAX_SECTOR_SIZE ( 512 ) /* Maximum sector size to be handled */ #define DFS_FILESYSTEMS_MAX ( 2 ) /* the max no. of mounted filesystem */ #define DFS_FD_MAX ( 4 ) /* the max number of opened files */ /******************************************************************************************** * SECTION: lwIP, a lighwight TCP/IP protocol stack ********************************************************************************************/ #define RT_USING_LWIP #define RT_LWIP_USING_RT_MEM /* LwIP uses RTT Memory Management */ #define RT_LWIP_ICMP /* Enable ICMP protocol */ //#define RT_LWIP_UDP /* Enable UDP protocol */ #define RT_LWIP_TCP /* Enable TCP protocol */ //#define RT_LWIP_DNS /* Enable DNS */ //#define RT_LWIP_DHCP /* Using DHCP */ #define RT_LWIP_TCP_PCB_NUM ( 5 ) /* the number of simulatenously */ /* active TCP connections */ /* IP address of target */ #define RT_LWIP_IPADDR0 192 #define RT_LWIP_IPADDR1 168 #define RT_LWIP_IPADDR2 0 #define RT_LWIP_IPADDR3 16 /* Gateway address of target */ #define RT_LWIP_GWADDR0 192 #define RT_LWIP_GWADDR1 168 #define RT_LWIP_GWADDR2 0 #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 /* TCP thread options */ #define RT_LWIP_TCPTHREAD_PRIORITY ( 12 ) #define RT_LWIP_TCPTHREAD_MBOX_SIZE ( 10 ) #define RT_LWIP_TCPTHREAD_STACKSIZE ( 1024 ) /* Ethernet if thread options */ #define RT_LWIP_ETHTHREAD_PRIORITY ( 15 ) #define RT_LWIP_ETHTHREAD_MBOX_SIZE ( 10 ) #define RT_LWIP_ETHTHREAD_STACKSIZE ( 512 ) #define RT_LWIP_TCP_SND_BUF ( 4096 ) /* TCP sender buffer space */ #define RT_LWIP_TCP_WND ( 4096 ) /* TCP receive window. */ /******************************************************************************************** * SECTION: RT-Thread/GUI ********************************************************************************************/ //#define RT_USING_RTGUI #define RTGUI_NAME_MAX ( 12 ) /* Name length of RTGUI object */ #define RTGUI_USING_FONT16 /* Support 16 weight font */ #define RTGUI_USING_FONTHZ /* Support Chinese font */ #define RTGUI_USING_DFS_FILERW /* Use DFS as file interface */ #define RTGUI_USING_HZ_FILE /* Use font file as Chinese font */ #define RTGUI_USING_HZ_BMP /* Use Chinese bitmap font */ #define RTGUI_USING_SMALL_SIZE /* Use small size in RTGUI */ #define RTGUI_USING_MOUSE_CURSOR /* Use mouse cursor */ #define RTGUI_DEFAULT_FONT_SIZE ( 16 ) /* Default font size in RTGUI */ /* Image support */ #define RTGUI_IMAGE_XPM #define RTGUI_IMAGE_BMP //#define RT_USING_CMSIS_OS /* Using CMSIS OS API */ #define RT_USING_RTT_CMSIS /* Using CMSIS in RTT */ //#define RT_USING_BSP_CMSIS /* Using CMSIS in BSP */ #ifdef __cplusplus } #endif /********************************* END OF FILE *********************************************/ #endif ```
查看更多
aozima
2015-12-16
调网络不抓包,调I2C等时序不上逻辑分析仪,就像电工不用万用表!多用整理的好的文字,比截图更省流量,还能在整理过程中思考。
赞
3
个回答
默认排序
按发布时间排序
Owen
2015-12-16
这家伙很懒,什么也没写!
按我的编程习惯和项目需求进行适配,个人认为比较清晰明了,回馈一下 那谁说的:知识的力量在于分享,哈哈
撰写答案
登录
注册新账号
关注者
0
被浏览
2.7k
关于作者
Owen
这家伙很懒,什么也没写!
提问
3
回答
18
被采纳
0
关注TA
发私信
相关问题
1
有关动态模块加载的一篇论文
2
最近的调程序总结
3
晕掉了,这么久都不见layer2的踪影啊
4
继续K9ii的历程
5
[GUI相关] FreeType 2
6
[GUI相关]嵌入式系统中文输入法的设计
7
20081101 RT-Thread开发者聚会总结
8
嵌入式系统基础
9
linux2.4.19在at91rm9200 上的寄存器设置
10
[转]基于嵌入式Linux的通用触摸屏校准程序
推荐文章
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
次被采纳
a1012112796
13
个答案
2
次被采纳
张世争
9
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
本月文章贡献
程序员阿伟
7
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
Betrayer
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部