Merge pull request #928 from SummerGGift/429_discovery
[BSP] 429 discovery add menuconfig
This commit is contained in:
commit
34ee3dfd60
|
@ -0,0 +1,31 @@
|
||||||
|
mainmenu "RT-Thread Configuration"
|
||||||
|
|
||||||
|
config $BSP_DIR
|
||||||
|
string
|
||||||
|
option env="BSP_ROOT"
|
||||||
|
default "."
|
||||||
|
|
||||||
|
config $RTT_DIR
|
||||||
|
string
|
||||||
|
option env="RTT_ROOT"
|
||||||
|
default "../.."
|
||||||
|
|
||||||
|
# you can change the RTT_ROOT default "../.." to your rtthread_root,
|
||||||
|
# example : default "F:/git_repositories/rt-thread"
|
||||||
|
|
||||||
|
config $PKGS_DIR
|
||||||
|
string
|
||||||
|
option env="PKGS_ROOT"
|
||||||
|
default "packages"
|
||||||
|
|
||||||
|
source "$RTT_DIR/KConfig"
|
||||||
|
source "$PKGS_DIR/KConfig"
|
||||||
|
|
||||||
|
source "$BSP_DIR/drivers/Kconfig"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
config RT_USING_EXT_SDRAM
|
||||||
|
bool "Enable SDRAM on the board"
|
||||||
|
default y
|
||||||
|
|
||||||
|
config RT_USING_UART1
|
||||||
|
bool "Enable UART1"
|
||||||
|
default y
|
||||||
|
|
||||||
|
config RT_USING_UART2
|
||||||
|
bool "Enable UART2"
|
||||||
|
default n
|
||||||
|
|
||||||
|
config RT_USING_UART3
|
||||||
|
bool "Enable UART3"
|
||||||
|
default n
|
||||||
|
|
||||||
|
config RT_USING_SPI5
|
||||||
|
bool "Enable SPI5"
|
||||||
|
default n
|
|
@ -59,7 +59,7 @@ extern int __bss_end;
|
||||||
|
|
||||||
// <o> Console on USART: <0=> no console <1=>USART 1 <2=>USART 2 <3=> USART 3
|
// <o> Console on USART: <0=> no console <1=>USART 1 <2=>USART 2 <3=> USART 3
|
||||||
// <i>Default: 1
|
// <i>Default: 1
|
||||||
#define STM32_CONSOLE_USART 2
|
#define STM32_CONSOLE_USART 1
|
||||||
|
|
||||||
void rt_hw_board_init(void);
|
void rt_hw_board_init(void);
|
||||||
|
|
||||||
|
|
|
@ -1154,6 +1154,27 @@
|
||||||
<FilePath>..\..\components\finsh\cmd.c</FilePath>
|
<FilePath>..\..\components\finsh\cmd.c</FilePath>
|
||||||
</File>
|
</File>
|
||||||
</Files>
|
</Files>
|
||||||
|
<Files>
|
||||||
|
<File>
|
||||||
|
<FileName>msh.c</FileName>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<FilePath>..\..\components\finsh\msh.c</FilePath>
|
||||||
|
</File>
|
||||||
|
</Files>
|
||||||
|
<Files>
|
||||||
|
<File>
|
||||||
|
<FileName>msh_cmd.c</FileName>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<FilePath>..\..\components\finsh\msh_cmd.c</FilePath>
|
||||||
|
</File>
|
||||||
|
</Files>
|
||||||
|
<Files>
|
||||||
|
<File>
|
||||||
|
<FileName>msh_file.c</FileName>
|
||||||
|
<FileType>1</FileType>
|
||||||
|
<FilePath>..\..\components\finsh\msh_file.c</FilePath>
|
||||||
|
</File>
|
||||||
|
</Files>
|
||||||
<Files>
|
<Files>
|
||||||
<File>
|
<File>
|
||||||
<FileName>finsh_compiler.c</FileName>
|
<FileName>finsh_compiler.c</FileName>
|
||||||
|
|
|
@ -1,172 +1,153 @@
|
||||||
/* RT-Thread config file */
|
#ifndef RT_CONFIG_H__
|
||||||
#ifndef __RTTHREAD_CFG_H__
|
#define RT_CONFIG_H__
|
||||||
#define __RTTHREAD_CFG_H__
|
|
||||||
|
|
||||||
/* RT_NAME_MAX*/
|
/* Automatically generated file; DO NOT EDIT. */
|
||||||
#define RT_NAME_MAX 8
|
/* RT-Thread Configuration */
|
||||||
|
|
||||||
/* RT_ALIGN_SIZE*/
|
/* RT-Thread Kernel */
|
||||||
#define RT_ALIGN_SIZE 4
|
|
||||||
|
|
||||||
/* PRIORITY_MAX */
|
#define RT_NAME_MAX 8
|
||||||
#define RT_THREAD_PRIORITY_MAX 32
|
#define RT_ALIGN_SIZE 4
|
||||||
|
#define RT_THREAD_PRIORITY_MAX 32
|
||||||
/* Tick per Second */
|
#define RT_TICK_PER_SECOND 100
|
||||||
#define RT_TICK_PER_SECOND 100
|
|
||||||
|
|
||||||
/* SECTION: RT_DEBUG */
|
|
||||||
/* Thread Debug */
|
|
||||||
#define RT_DEBUG
|
#define RT_DEBUG
|
||||||
#define RT_DEBUG_INIT 1
|
|
||||||
#define RT_USING_OVERFLOW_CHECK
|
#define RT_USING_OVERFLOW_CHECK
|
||||||
|
#define RT_DEBUG_INIT 1
|
||||||
/* Using Hook */
|
/* RT_DEBUG_THREAD is not set */
|
||||||
#define RT_USING_HOOK
|
#define RT_USING_HOOK
|
||||||
|
#define IDLE_THREAD_STACK_SIZE 1024
|
||||||
|
/* RT_USING_TIMER_SOFT is not set */
|
||||||
|
|
||||||
#define IDLE_THREAD_STACK_SIZE 1024
|
/* Inter-Thread communication */
|
||||||
|
|
||||||
/* Using Software Timer */
|
|
||||||
/* #define RT_USING_TIMER_SOFT */
|
|
||||||
#define RT_TIMER_THREAD_PRIO 4
|
|
||||||
#define RT_TIMER_THREAD_STACK_SIZE 512
|
|
||||||
|
|
||||||
/* SECTION: IPC */
|
|
||||||
/* Using Semaphore*/
|
|
||||||
#define RT_USING_SEMAPHORE
|
#define RT_USING_SEMAPHORE
|
||||||
|
|
||||||
/* Using Mutex */
|
|
||||||
#define RT_USING_MUTEX
|
#define RT_USING_MUTEX
|
||||||
|
|
||||||
/* Using Event */
|
|
||||||
#define RT_USING_EVENT
|
#define RT_USING_EVENT
|
||||||
|
|
||||||
/* Using MailBox */
|
|
||||||
#define RT_USING_MAILBOX
|
#define RT_USING_MAILBOX
|
||||||
|
|
||||||
/* Using Message Queue */
|
|
||||||
#define RT_USING_MESSAGEQUEUE
|
#define RT_USING_MESSAGEQUEUE
|
||||||
|
/* RT_USING_SIGNALS is not set */
|
||||||
|
|
||||||
|
/* Memory Management */
|
||||||
|
|
||||||
/* SECTION: Memory Management */
|
|
||||||
/* Using Memory Pool Management*/
|
|
||||||
#define RT_USING_MEMPOOL
|
#define RT_USING_MEMPOOL
|
||||||
|
|
||||||
/* Using Dynamic Heap Management */
|
|
||||||
#define RT_USING_HEAP
|
|
||||||
#define RT_USING_MEMHEAP
|
#define RT_USING_MEMHEAP
|
||||||
/* Using Small MM */
|
#define RT_USING_HEAP
|
||||||
#define RT_USING_SMALL_MEM
|
#define RT_USING_SMALL_MEM
|
||||||
|
/* RT_USING_SLAB is not set */
|
||||||
|
|
||||||
|
/* Kernel Device Object */
|
||||||
|
|
||||||
|
#define RT_USING_DEVICE
|
||||||
|
#define RT_USING_CONSOLE
|
||||||
|
#define RT_CONSOLEBUF_SIZE 128
|
||||||
|
#define RT_CONSOLE_DEVICE_NAME "uart1"
|
||||||
|
/* RT_USING_MODULE is not set */
|
||||||
|
|
||||||
|
/* RT-Thread Components */
|
||||||
|
|
||||||
#define RT_USING_COMPONENTS_INIT
|
#define RT_USING_COMPONENTS_INIT
|
||||||
|
/* RT_USING_USER_MAIN is not set */
|
||||||
|
|
||||||
#define RT_USING_EXT_SDRAM
|
/* C++ features */
|
||||||
|
|
||||||
/* SECTION: Device System */
|
/* RT_USING_CPLUSPLUS is not set */
|
||||||
/* Using Device System */
|
|
||||||
#define RT_USING_DEVICE
|
|
||||||
#define RT_USING_DEVICE_IPC
|
|
||||||
/* Using serial framework */
|
|
||||||
#define RT_USING_SERIAL
|
|
||||||
|
|
||||||
#define RT_USING_UART1
|
/* Command shell */
|
||||||
#define RT_USING_UART2
|
|
||||||
#define RT_USING_UART3
|
|
||||||
|
|
||||||
/* Using GPIO pin framework */
|
|
||||||
//#define RT_USING_PIN
|
|
||||||
|
|
||||||
/* Using Hardware Timer framework */
|
|
||||||
//#define RT_USING_HWTIMER
|
|
||||||
|
|
||||||
/* 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
|
#define RT_USING_FINSH
|
||||||
/* Using symbol table */
|
#define FINSH_USING_HISTORY
|
||||||
#define FINSH_USING_SYMTAB
|
#define FINSH_USING_SYMTAB
|
||||||
#define FINSH_USING_DESCRIPTION
|
#define FINSH_USING_DESCRIPTION
|
||||||
|
#define FINSH_THREAD_PRIORITY 20
|
||||||
|
#define FINSH_THREAD_STACK_SIZE 4096
|
||||||
|
#define FINSH_CMD_SIZE 80
|
||||||
|
/* FINSH_USING_AUTH is not set */
|
||||||
|
#define FINSH_USING_MSH
|
||||||
|
#define FINSH_USING_MSH_DEFAULT
|
||||||
|
/* FINSH_USING_MSH_ONLY is not set */
|
||||||
|
|
||||||
/* SECTION: device filesystem */
|
/* Device virtual file system */
|
||||||
/* Using Device file system */
|
|
||||||
/* #define RT_USING_DFS */
|
|
||||||
/* the max number of mounted filesystem */
|
|
||||||
#define DFS_FILESYSTEMS_MAX 2
|
|
||||||
/* the max number of opened files */
|
|
||||||
#define DFS_FD_MAX 4
|
|
||||||
|
|
||||||
/* Using ELM FATFS */
|
/* RT_USING_DFS is not set */
|
||||||
//#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
|
|
||||||
|
|
||||||
/* Using ROM file system */
|
/* Device Drivers */
|
||||||
// #define RT_USING_DFS_ROMFS
|
|
||||||
|
|
||||||
/* SECTION: lwip, a lighwight TCP/IP protocol stack */
|
#define RT_USING_DEVICE_IPC
|
||||||
/* #define RT_USING_LWIP */
|
#define RT_USING_SERIAL
|
||||||
/* Enable ICMP protocol*/
|
/* RT_USING_CAN is not set */
|
||||||
#define RT_LWIP_ICMP
|
/* RT_USING_HWTIMER is not set */
|
||||||
/* Enable UDP protocol*/
|
/* RT_USING_I2C is not set */
|
||||||
#define RT_LWIP_UDP
|
/* RT_USING_PIN is not set */
|
||||||
/* Enable TCP protocol*/
|
/* RT_USING_MTD_NOR is not set */
|
||||||
#define RT_LWIP_TCP
|
/* RT_USING_MTD_NAND is not set */
|
||||||
/* Enable DNS */
|
/* RT_USING_RTC is not set */
|
||||||
#define RT_LWIP_DNS
|
/* RT_USING_SDIO is not set */
|
||||||
|
/* RT_USING_SPI is not set */
|
||||||
|
/* RT_USING_WDT is not set */
|
||||||
|
/* RT_USING_USB_HOST is not set */
|
||||||
|
/* RT_USING_USB_DEVICE is not set */
|
||||||
|
|
||||||
/* the number of simulatenously active TCP connections*/
|
/* POSIX layer and C standard library */
|
||||||
#define RT_LWIP_TCP_PCB_NUM 5
|
|
||||||
|
|
||||||
/* ip address of target*/
|
/* RT_USING_LIBC is not set */
|
||||||
#define RT_LWIP_IPADDR0 192
|
/* RT_USING_PTHREADS is not set */
|
||||||
#define RT_LWIP_IPADDR1 168
|
|
||||||
#define RT_LWIP_IPADDR2 1
|
|
||||||
#define RT_LWIP_IPADDR3 201
|
|
||||||
|
|
||||||
/* gateway address of target*/
|
/* Network stack */
|
||||||
#define RT_LWIP_GWADDR0 192
|
|
||||||
#define RT_LWIP_GWADDR1 168
|
|
||||||
#define RT_LWIP_GWADDR2 1
|
|
||||||
#define RT_LWIP_GWADDR3 1
|
|
||||||
|
|
||||||
/* mask address of target*/
|
/* light weight TCP/IP stack */
|
||||||
#define RT_LWIP_MSKADDR0 255
|
|
||||||
#define RT_LWIP_MSKADDR1 255
|
|
||||||
#define RT_LWIP_MSKADDR2 255
|
|
||||||
#define RT_LWIP_MSKADDR3 0
|
|
||||||
|
|
||||||
/* tcp thread options */
|
/* RT_USING_LWIP is not set */
|
||||||
#define RT_LWIP_TCPTHREAD_PRIORITY 12
|
|
||||||
#define RT_LWIP_TCPTHREAD_MBOX_SIZE 4
|
|
||||||
#define RT_LWIP_TCPTHREAD_STACKSIZE 1024
|
|
||||||
|
|
||||||
/* ethernet if thread options */
|
/* Modbus master and slave stack */
|
||||||
#define RT_LWIP_ETHTHREAD_PRIORITY 15
|
|
||||||
#define RT_LWIP_ETHTHREAD_MBOX_SIZE 4
|
|
||||||
#define RT_LWIP_ETHTHREAD_STACKSIZE 512
|
|
||||||
|
|
||||||
/* TCP sender buffer space */
|
/* RT_USING_MODBUS is not set */
|
||||||
#define RT_LWIP_TCP_SND_BUF 8192
|
|
||||||
/* TCP receive window. */
|
|
||||||
#define RT_LWIP_TCP_WND 8192
|
|
||||||
|
|
||||||
#define CHECKSUM_CHECK_TCP 0
|
/* RT-Thread UI Engine */
|
||||||
#define CHECKSUM_CHECK_IP 0
|
|
||||||
#define CHECKSUM_CHECK_UDP 0
|
|
||||||
|
|
||||||
#define CHECKSUM_GEN_TCP 0
|
/* RT_USING_GUIENGINE is not set */
|
||||||
#define CHECKSUM_GEN_IP 0
|
|
||||||
#define CHECKSUM_GEN_UDP 0
|
|
||||||
|
|
||||||
/* RT_GDB_STUB */
|
/* RT-Thread online packages */
|
||||||
//#define RT_USING_GDB
|
|
||||||
|
/* system packages */
|
||||||
|
|
||||||
|
/* PKG_USING_PARTITION is not set */
|
||||||
|
/* PKG_USING_SQLITE is not set */
|
||||||
|
|
||||||
|
/* IoT - internet of things */
|
||||||
|
|
||||||
|
/* PKG_USING_PAHOMQTT is not set */
|
||||||
|
/* PKG_USING_WEBCLIENT is not set */
|
||||||
|
/* PKG_USING_MONGOOSE is not set */
|
||||||
|
/* PKG_USING_WEBTERMINAL is not set */
|
||||||
|
/* PKG_USING_CJSON is not set */
|
||||||
|
/* PKG_USING_EZXML is not set */
|
||||||
|
|
||||||
|
/* Marvell WiFi */
|
||||||
|
|
||||||
|
/* PKG_USING_MARVELLWIFI is not set */
|
||||||
|
|
||||||
|
/* security packages */
|
||||||
|
|
||||||
|
/* PKG_USING_MBEDTLS is not set */
|
||||||
|
|
||||||
|
/* language packages */
|
||||||
|
|
||||||
|
/* PKG_USING_JERRYSCRIPT is not set */
|
||||||
|
|
||||||
|
/* multimedia packages */
|
||||||
|
|
||||||
|
/* tools packages */
|
||||||
|
|
||||||
|
/* PKG_USING_CMBACKTRACE is not set */
|
||||||
|
/* PKG_USING_EASYLOGGER is not set */
|
||||||
|
|
||||||
|
/* miscellaneous packages */
|
||||||
|
|
||||||
|
/* PKG_USING_HELLO is not set */
|
||||||
|
#define RT_USING_EXT_SDRAM
|
||||||
|
#define RT_USING_UART1
|
||||||
|
/* RT_USING_UART2 is not set */
|
||||||
|
/* RT_USING_UART3 is not set */
|
||||||
|
/* RT_USING_SPI5 is not set */
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue