9691c659c8
1. fix heap management for stm32f0xx(SRAM=8k) 2. add USART1, USART2 driver for stm32f051R8 3. fix finsh support for stm32f0x 4. fix board components initial for stm32f0x and open debug msg 5. add led driver(pc9) and test thread for stm32f0discovery board 6. add init thread for stm32f0x do components initial 7. add rcc initial for stm32f0x in rt_hw_board_init() 8. add print rcc freq information function the console output example is: SYSCLK_Frequency is 48000000HZ PCLK_Frequency is 48000000HZ HCLK_Frequency is 48000000HZ CECCLK_Frequency is 32786HZ ADCCLK_Frequency is 14000000HZ USART1CLK_Frequency is 48000000HZ I2C1CLK_Frequency is 8000000HZ SystemCoreClock is 48000000HZ initialize rti_start:0 done \ | / - RT - Thread Operating System / | \ 1.2.0 build Nov 15 2013 2006 - 2013 Copyright by rt-thread team do components intialization. initialize rti_board_end:0 done initialize rt_hw_led_init:32768 done initialize finsh_system_init:0 done finsh>>
126 lines
3.0 KiB
C
126 lines
3.0 KiB
C
/* RT-Thread config file */
|
|
#ifndef __RTTHREAD_CFG_H__
|
|
#define __RTTHREAD_CFG_H__
|
|
|
|
/* 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 100
|
|
|
|
/* SECTION: RT_DEBUG */
|
|
/* Thread Debug */
|
|
#define RT_DEBUG
|
|
#define RT_DEBUG_INIT 1
|
|
#define RT_USING_OVERFLOW_CHECK
|
|
|
|
/* Using Hook */
|
|
/* #define RT_USING_HOOK */
|
|
|
|
/* 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 10
|
|
|
|
/* SECTION: 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_TINY_SIZE
|
|
|
|
// <bool name="RT_USING_COMPONENTS_INIT" description="Using RT-Thread components initialization" default="true" />
|
|
#define RT_USING_COMPONENTS_INIT
|
|
|
|
/* SECTION: Device System */
|
|
/* Using Device System */
|
|
#define RT_USING_DEVICE
|
|
// <bool name="RT_USING_DEVICE_IPC" description="Using device communication" default="true" />
|
|
#define RT_USING_DEVICE_IPC
|
|
// <bool name="RT_USING_SERIAL" description="Using Serial" default="true" />
|
|
#define RT_USING_SERIAL
|
|
|
|
/* SECTION: Console options */
|
|
#define RT_USING_CONSOLE
|
|
/* the buffer size of console*/
|
|
#define RT_CONSOLEBUF_SIZE 128
|
|
// <string name="RT_CONSOLE_DEVICE_NAME" description="The device name for console" default="uart1" />
|
|
#define RT_CONSOLE_DEVICE_NAME "uart1"
|
|
|
|
|
|
|
|
/* SECTION: finsh, a C-Express shell */
|
|
#define RT_USING_FINSH
|
|
/* configure finsh parameters */
|
|
#define FINSH_THREAD_PRIORITY 25
|
|
#define FINSH_THREAD_STACK_SIZE 1024
|
|
#define FINSH_HISTORY_LINES 1
|
|
/* Using symbol table */
|
|
#define FINSH_USING_SYMTAB
|
|
#define FINSH_USING_DESCRIPTION
|
|
|
|
/* SECTION: libc management */
|
|
#ifdef __CC_ARM
|
|
/* #define RT_USING_MINILIBC */
|
|
/* #define RT_USING_NEWLIB */
|
|
#endif
|
|
|
|
#ifdef __ICCARM__
|
|
/* #define RT_USING_MINILIBC */
|
|
/* #define RT_USING_NEWLIB */
|
|
#endif
|
|
|
|
#ifdef __GNUC__
|
|
/* #define RT_USING_MINILIBC */
|
|
#define RT_USING_NEWLIB
|
|
#endif
|
|
|
|
/* SECTION: device filesystem */
|
|
/* #define RT_USING_DFS */
|
|
//#define RT_USING_DFS_ELMFAT
|
|
#define RT_DFS_ELM_WORD_ACCESS
|
|
/* 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 1 */
|
|
#define RT_DFS_ELM_MAX_LFN 255
|
|
/* Maximum sector size to be handled. */
|
|
#define RT_DFS_ELM_MAX_SECTOR_SIZE 512
|
|
|
|
#define RT_USING_DFS_ROMFS
|
|
|
|
/* the max number of mounted filesystem */
|
|
#define DFS_FILESYSTEMS_MAX 2
|
|
/* the max number of opened files */
|
|
#define DFS_FD_MAX 4
|
|
|
|
#endif
|