2019-03-27 16:49:26 +08:00
|
|
|
#ifndef RT_CONFIG_H__
|
|
|
|
#define RT_CONFIG_H__
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* Generated by Kconfiglib (https://github.com/ulfalizer/Kconfiglib) */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* RT-Thread Kernel */
|
|
|
|
|
|
|
|
#define RT_NAME_MAX 8
|
|
|
|
#define RT_ALIGN_SIZE 4
|
|
|
|
#define RT_THREAD_PRIORITY_32
|
|
|
|
#define RT_THREAD_PRIORITY_MAX 32
|
|
|
|
#define RT_TICK_PER_SECOND 1000
|
|
|
|
#define RT_USING_OVERFLOW_CHECK
|
|
|
|
#define RT_USING_HOOK
|
|
|
|
#define RT_USING_IDLE_HOOK
|
2019-09-05 08:33:06 +08:00
|
|
|
#define RT_IDLE_HOOK_LIST_SIZE 4
|
2019-03-27 16:49:26 +08:00
|
|
|
#define IDLE_THREAD_STACK_SIZE 256
|
|
|
|
#define RT_USING_TIMER_SOFT
|
|
|
|
#define RT_TIMER_THREAD_PRIO 4
|
|
|
|
#define RT_TIMER_THREAD_STACK_SIZE 512
|
2021-10-14 14:48:32 +08:00
|
|
|
|
|
|
|
/* kservice optimization */
|
|
|
|
|
|
|
|
/* end of kservice optimization */
|
2019-03-27 16:49:26 +08:00
|
|
|
#define RT_DEBUG
|
|
|
|
#define RT_DEBUG_COLOR
|
|
|
|
|
|
|
|
/* Inter-Thread communication */
|
|
|
|
|
|
|
|
#define RT_USING_SEMAPHORE
|
|
|
|
#define RT_USING_MUTEX
|
|
|
|
#define RT_USING_EVENT
|
|
|
|
#define RT_USING_MAILBOX
|
|
|
|
#define RT_USING_MESSAGEQUEUE
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Inter-Thread communication */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* Memory Management */
|
|
|
|
|
|
|
|
#define RT_USING_MEMPOOL
|
|
|
|
#define RT_USING_SMALL_MEM
|
|
|
|
#define RT_USING_HEAP
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Memory Management */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* Kernel Device Object */
|
|
|
|
|
|
|
|
#define RT_USING_DEVICE
|
|
|
|
#define RT_USING_CONSOLE
|
|
|
|
#define RT_CONSOLEBUF_SIZE 128
|
|
|
|
#define RT_CONSOLE_DEVICE_NAME "uart0"
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Kernel Device Object */
|
2021-12-23 00:20:53 +08:00
|
|
|
#define RT_VER_NUM 0x40005
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of RT-Thread Kernel */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* RT-Thread Components */
|
|
|
|
|
|
|
|
#define RT_USING_COMPONENTS_INIT
|
|
|
|
#define RT_USING_USER_MAIN
|
|
|
|
#define RT_MAIN_THREAD_STACK_SIZE 2048
|
|
|
|
#define RT_MAIN_THREAD_PRIORITY 10
|
|
|
|
|
|
|
|
/* C++ features */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of C++ features */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* Command shell */
|
|
|
|
|
|
|
|
#define RT_USING_FINSH
|
2021-10-14 14:48:32 +08:00
|
|
|
#define RT_USING_MSH
|
|
|
|
#define FINSH_USING_MSH
|
2019-03-27 16:49:26 +08:00
|
|
|
#define FINSH_THREAD_NAME "tshell"
|
2021-10-14 14:48:32 +08:00
|
|
|
#define FINSH_THREAD_PRIORITY 20
|
|
|
|
#define FINSH_THREAD_STACK_SIZE 4096
|
2019-03-27 16:49:26 +08:00
|
|
|
#define FINSH_USING_HISTORY
|
|
|
|
#define FINSH_HISTORY_LINES 5
|
|
|
|
#define FINSH_USING_SYMTAB
|
|
|
|
#define FINSH_CMD_SIZE 80
|
2021-10-14 14:48:32 +08:00
|
|
|
#define MSH_USING_BUILT_IN_COMMANDS
|
|
|
|
#define FINSH_USING_DESCRIPTION
|
2019-03-27 16:49:26 +08:00
|
|
|
#define FINSH_ARG_MAX 10
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Command shell */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* Device virtual file system */
|
|
|
|
|
|
|
|
#define RT_USING_DFS
|
|
|
|
#define DFS_USING_WORKDIR
|
|
|
|
#define DFS_FILESYSTEMS_MAX 4
|
|
|
|
#define DFS_FILESYSTEM_TYPES_MAX 4
|
|
|
|
#define DFS_FD_MAX 16
|
|
|
|
#define RT_USING_DFS_DEVFS
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Device virtual file system */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* Device Drivers */
|
|
|
|
|
|
|
|
#define RT_USING_DEVICE_IPC
|
|
|
|
#define RT_PIPE_BUFSZ 512
|
2019-04-17 11:00:45 +08:00
|
|
|
#define RT_USING_SYSTEM_WORKQUEUE
|
|
|
|
#define RT_SYSTEM_WORKQUEUE_STACKSIZE 2048
|
|
|
|
#define RT_SYSTEM_WORKQUEUE_PRIORITY 23
|
2019-03-27 16:49:26 +08:00
|
|
|
#define RT_USING_SERIAL
|
2021-10-14 14:48:32 +08:00
|
|
|
#define RT_USING_SERIAL_V1
|
2019-03-27 16:49:26 +08:00
|
|
|
#define RT_SERIAL_USING_DMA
|
|
|
|
#define RT_SERIAL_RB_BUFSZ 64
|
2019-08-03 10:39:03 +08:00
|
|
|
#define RT_USING_HWTIMER
|
|
|
|
#define RT_USING_I2C
|
|
|
|
#define RT_USING_I2C_BITOPS
|
2019-03-27 16:49:26 +08:00
|
|
|
#define RT_USING_PIN
|
2019-08-03 10:39:03 +08:00
|
|
|
#define RT_USING_PWM
|
|
|
|
#define RT_USING_RTC
|
|
|
|
#define RT_USING_SOFT_RTC
|
|
|
|
#define RT_USING_SPI
|
|
|
|
#define RT_USING_WDT
|
|
|
|
#define RT_USING_HWCRYPTO
|
|
|
|
#define RT_HWCRYPTO_DEFAULT_NAME "hwcryto"
|
|
|
|
#define RT_HWCRYPTO_IV_MAX_SIZE 16
|
|
|
|
#define RT_HWCRYPTO_KEYBIT_MAX_SIZE 256
|
|
|
|
#define RT_HWCRYPTO_USING_AES
|
|
|
|
#define RT_HWCRYPTO_USING_AES_ECB
|
|
|
|
#define RT_HWCRYPTO_USING_AES_CBC
|
|
|
|
#define RT_HWCRYPTO_USING_MD5
|
|
|
|
#define RT_HWCRYPTO_USING_SHA1
|
|
|
|
#define RT_HWCRYPTO_USING_RNG
|
|
|
|
#define RT_HWCRYPTO_USING_CRC
|
|
|
|
#define RT_HWCRYPTO_USING_CRC_07
|
|
|
|
#define RT_HWCRYPTO_USING_CRC_8005
|
|
|
|
#define RT_HWCRYPTO_USING_CRC_1021
|
|
|
|
#define RT_HWCRYPTO_USING_CRC_04C11DB7
|
|
|
|
#define RT_HWCRYPTO_USING_BIGNUM
|
|
|
|
#define RT_HWCRYPTO_USING_BIGNUM_EXPTMOD
|
|
|
|
#define RT_HWCRYPTO_USING_BIGNUM_MULMOD
|
2019-03-27 16:49:26 +08:00
|
|
|
#define RT_USING_WIFI
|
|
|
|
#define RT_WLAN_DEVICE_STA_NAME "wlan0"
|
|
|
|
#define RT_WLAN_DEVICE_AP_NAME "wlan1"
|
|
|
|
#define RT_WLAN_SSID_MAX_LENGTH 32
|
|
|
|
#define RT_WLAN_PASSWORD_MAX_LENGTH 32
|
2019-08-03 10:39:03 +08:00
|
|
|
#define RT_WLAN_DEV_EVENT_NUM 2
|
|
|
|
#define RT_WLAN_MANAGE_ENABLE
|
|
|
|
#define RT_WLAN_SCAN_WAIT_MS 10000
|
|
|
|
#define RT_WLAN_CONNECT_WAIT_MS 10000
|
2019-03-27 16:49:26 +08:00
|
|
|
#define RT_WLAN_SCAN_SORT
|
2019-08-03 10:39:03 +08:00
|
|
|
#define RT_WLAN_MSH_CMD_ENABLE
|
|
|
|
#define RT_WLAN_AUTO_CONNECT_ENABLE
|
|
|
|
#define AUTO_CONNECTION_PERIOD_MS 2000
|
|
|
|
#define RT_WLAN_CFG_ENABLE
|
2019-03-27 16:49:26 +08:00
|
|
|
#define RT_WLAN_CFG_INFO_MAX 3
|
2019-08-03 10:39:03 +08:00
|
|
|
#define RT_WLAN_PROT_ENABLE
|
|
|
|
#define RT_WLAN_PROT_NAME_LEN 8
|
|
|
|
#define RT_WLAN_PROT_MAX 2
|
|
|
|
#define RT_WLAN_DEFAULT_PROT "lwip"
|
|
|
|
#define RT_WLAN_PROT_LWIP_ENABLE
|
|
|
|
#define RT_WLAN_PROT_LWIP_NAME "lwip"
|
|
|
|
#define RT_WLAN_WORK_THREAD_ENABLE
|
2019-03-27 16:49:26 +08:00
|
|
|
#define RT_WLAN_WORKQUEUE_THREAD_NAME "wlan_job"
|
|
|
|
#define RT_WLAN_WORKQUEUE_THREAD_SIZE 2048
|
|
|
|
#define RT_WLAN_WORKQUEUE_THREAD_PRIO 22
|
|
|
|
|
|
|
|
/* Using USB */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Using USB */
|
|
|
|
/* end of Device Drivers */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* POSIX layer and C standard library */
|
|
|
|
|
|
|
|
#define RT_USING_LIBC
|
|
|
|
#define RT_USING_POSIX
|
2021-10-14 14:48:32 +08:00
|
|
|
#define RT_LIBC_USING_TIME
|
|
|
|
#define RT_LIBC_DEFAULT_TIMEZONE 8
|
|
|
|
/* end of POSIX layer and C standard library */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* Network */
|
|
|
|
|
|
|
|
/* Socket abstraction layer */
|
|
|
|
|
|
|
|
#define RT_USING_SAL
|
2021-10-14 14:48:32 +08:00
|
|
|
#define SAL_INTERNET_CHECK
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* protocol stack implement */
|
|
|
|
|
|
|
|
#define SAL_USING_LWIP
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of protocol stack implement */
|
2019-03-27 16:49:26 +08:00
|
|
|
#define SAL_USING_POSIX
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Socket abstraction layer */
|
2019-04-17 11:00:45 +08:00
|
|
|
|
|
|
|
/* Network interface device */
|
|
|
|
|
|
|
|
#define RT_USING_NETDEV
|
|
|
|
#define NETDEV_USING_IFCONFIG
|
|
|
|
#define NETDEV_USING_PING
|
|
|
|
#define NETDEV_USING_NETSTAT
|
2019-06-24 17:51:31 +08:00
|
|
|
#define NETDEV_USING_AUTO_DEFAULT
|
|
|
|
#define NETDEV_IPV4 1
|
|
|
|
#define NETDEV_IPV6 0
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Network interface device */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* light weight TCP/IP stack */
|
|
|
|
|
|
|
|
#define RT_USING_LWIP
|
|
|
|
#define RT_USING_LWIP202
|
2021-10-14 14:48:32 +08:00
|
|
|
#define RT_LWIP_MEM_ALIGNMENT 4
|
2019-03-27 16:49:26 +08:00
|
|
|
#define RT_LWIP_IGMP
|
|
|
|
#define RT_LWIP_ICMP
|
|
|
|
#define RT_LWIP_DNS
|
|
|
|
#define RT_LWIP_DHCP
|
|
|
|
#define IP_SOF_BROADCAST 1
|
|
|
|
#define IP_SOF_BROADCAST_RECV 1
|
|
|
|
|
|
|
|
/* Static IPv4 Address */
|
|
|
|
|
|
|
|
#define RT_LWIP_IPADDR "192.168.1.30"
|
|
|
|
#define RT_LWIP_GWADDR "192.168.1.1"
|
|
|
|
#define RT_LWIP_MSKADDR "255.255.255.0"
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Static IPv4 Address */
|
2019-03-27 16:49:26 +08:00
|
|
|
#define RT_LWIP_UDP
|
|
|
|
#define RT_LWIP_TCP
|
|
|
|
#define RT_LWIP_RAW
|
|
|
|
#define RT_MEMP_NUM_NETCONN 8
|
|
|
|
#define RT_LWIP_PBUF_NUM 16
|
|
|
|
#define RT_LWIP_RAW_PCB_NUM 4
|
|
|
|
#define RT_LWIP_UDP_PCB_NUM 4
|
|
|
|
#define RT_LWIP_TCP_PCB_NUM 4
|
|
|
|
#define RT_LWIP_TCP_SEG_NUM 40
|
|
|
|
#define RT_LWIP_TCP_SND_BUF 10240
|
|
|
|
#define RT_LWIP_TCP_WND 10240
|
|
|
|
#define RT_LWIP_TCPTHREAD_PRIORITY 10
|
|
|
|
#define RT_LWIP_TCPTHREAD_MBOX_SIZE 8
|
|
|
|
#define RT_LWIP_TCPTHREAD_STACKSIZE 1024
|
|
|
|
#define LWIP_NO_RX_THREAD
|
|
|
|
#define LWIP_NO_TX_THREAD
|
|
|
|
#define RT_LWIP_ETHTHREAD_PRIORITY 12
|
|
|
|
#define RT_LWIP_ETHTHREAD_STACKSIZE 1024
|
|
|
|
#define RT_LWIP_ETHTHREAD_MBOX_SIZE 8
|
|
|
|
#define LWIP_NETIF_STATUS_CALLBACK 1
|
2019-04-17 11:00:45 +08:00
|
|
|
#define LWIP_NETIF_LINK_CALLBACK 1
|
2019-03-27 16:49:26 +08:00
|
|
|
#define SO_REUSE 1
|
|
|
|
#define LWIP_SO_RCVTIMEO 1
|
|
|
|
#define LWIP_SO_SNDTIMEO 1
|
|
|
|
#define LWIP_SO_RCVBUF 1
|
2021-10-14 14:48:32 +08:00
|
|
|
#define LWIP_SO_LINGER 0
|
2019-03-27 16:49:26 +08:00
|
|
|
#define LWIP_NETIF_LOOPBACK 0
|
2019-04-17 11:00:45 +08:00
|
|
|
#define RT_LWIP_USING_PING
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of light weight TCP/IP stack */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* AT commands */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of AT commands */
|
2019-03-27 16:49:26 +08:00
|
|
|
#define LWIP_USING_DHCPD
|
|
|
|
#define DHCPD_SERVER_IP "192.168.169.1"
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Network */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* VBUS(Virtual Software BUS) */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of VBUS(Virtual Software BUS) */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* Utilities */
|
|
|
|
|
|
|
|
#define RT_USING_ULOG
|
|
|
|
#define ULOG_OUTPUT_LVL_I
|
|
|
|
#define ULOG_OUTPUT_LVL 6
|
|
|
|
#define ULOG_USING_ISR_LOG
|
|
|
|
#define ULOG_ASSERT_ENABLE
|
|
|
|
#define ULOG_LINE_BUF_SIZE 128
|
|
|
|
|
|
|
|
/* log format */
|
|
|
|
|
|
|
|
#define ULOG_USING_COLOR
|
|
|
|
#define ULOG_OUTPUT_TIME
|
|
|
|
#define ULOG_OUTPUT_LEVEL
|
|
|
|
#define ULOG_OUTPUT_TAG
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of log format */
|
2019-03-27 16:49:26 +08:00
|
|
|
#define ULOG_BACKEND_USING_CONSOLE
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Utilities */
|
|
|
|
/* end of RT-Thread Components */
|
|
|
|
|
|
|
|
/* RT-Thread Utestcases */
|
|
|
|
|
|
|
|
/* end of RT-Thread Utestcases */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* RT-Thread online packages */
|
|
|
|
|
|
|
|
/* IoT - internet of things */
|
|
|
|
|
|
|
|
|
|
|
|
/* Wi-Fi */
|
|
|
|
|
|
|
|
/* Marvell WiFi */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Marvell WiFi */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* Wiced WiFi */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Wiced WiFi */
|
|
|
|
/* end of Wi-Fi */
|
2019-08-03 10:39:03 +08:00
|
|
|
#define PKG_USING_NETUTILS
|
|
|
|
#define PKG_NETUTILS_NTP
|
2021-10-14 14:48:32 +08:00
|
|
|
#define NTP_USING_AUTO_SYNC
|
|
|
|
#define NTP_AUTO_SYNC_FIRST_DELAY 30
|
|
|
|
#define NTP_AUTO_SYNC_PERIOD 3600
|
2019-08-03 10:39:03 +08:00
|
|
|
#define NETUTILS_NTP_HOSTNAME "cn.ntp.org.cn"
|
|
|
|
#define NETUTILS_NTP_HOSTNAME2 "ntp.rt-thread.org"
|
|
|
|
#define NETUTILS_NTP_HOSTNAME3 "edu.ntp.org.cn"
|
2021-10-14 14:48:32 +08:00
|
|
|
#define PKG_USING_NETUTILS_V131
|
|
|
|
#define PKG_NETUTILS_VER_NUM 0x10301
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* IoT Cloud */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of IoT Cloud */
|
|
|
|
/* end of IoT - internet of things */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* security packages */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of security packages */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* language packages */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of language packages */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* multimedia packages */
|
|
|
|
|
2021-12-07 03:26:16 +08:00
|
|
|
/* LVGL: powerful and easy-to-use embedded GUI library */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
2021-12-07 03:26:16 +08:00
|
|
|
/* end of LVGL: powerful and easy-to-use embedded GUI library */
|
2021-10-14 14:48:32 +08:00
|
|
|
|
|
|
|
/* u8g2: a monochrome graphic library */
|
|
|
|
|
|
|
|
/* end of u8g2: a monochrome graphic library */
|
2021-12-07 03:26:16 +08:00
|
|
|
|
|
|
|
/* PainterEngine: A cross-platform graphics application framework written in C language */
|
|
|
|
|
|
|
|
/* end of PainterEngine: A cross-platform graphics application framework written in C language */
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of multimedia packages */
|
|
|
|
|
2019-03-27 16:49:26 +08:00
|
|
|
/* tools packages */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of tools packages */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* system packages */
|
|
|
|
|
2021-12-23 00:20:53 +08:00
|
|
|
/* enhanced kernel services */
|
2021-12-07 03:26:16 +08:00
|
|
|
|
2021-12-23 00:20:53 +08:00
|
|
|
/* end of enhanced kernel services */
|
2021-12-07 03:26:16 +08:00
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* acceleration: Assembly language or algorithmic acceleration packages */
|
|
|
|
|
|
|
|
/* end of acceleration: Assembly language or algorithmic acceleration packages */
|
|
|
|
|
2021-12-07 03:26:16 +08:00
|
|
|
/* CMSIS: ARM Cortex-M Microcontroller Software Interface Standard */
|
|
|
|
|
|
|
|
/* end of CMSIS: ARM Cortex-M Microcontroller Software Interface Standard */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* Micrium: Micrium software products porting for RT-Thread */
|
|
|
|
|
|
|
|
/* end of Micrium: Micrium software products porting for RT-Thread */
|
|
|
|
/* end of system packages */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* peripheral libraries and drivers */
|
|
|
|
|
|
|
|
#define PKG_USING_WM_LIBRARIES
|
|
|
|
#define PKG_USING_WM_LIBRARIES_LATEST_VERSION
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of peripheral libraries and drivers */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* AI packages */
|
|
|
|
|
|
|
|
/* end of AI packages */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* miscellaneous packages */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* samples: kernel and components samples */
|
|
|
|
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of samples: kernel and components samples */
|
|
|
|
|
|
|
|
/* entertainment: terminal games and other interesting software packages */
|
|
|
|
|
|
|
|
/* end of entertainment: terminal games and other interesting software packages */
|
|
|
|
/* end of miscellaneous packages */
|
|
|
|
/* end of RT-Thread online packages */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* Env config */
|
|
|
|
|
|
|
|
#define SYS_PKGS_DOWNLOAD_ACCELERATE
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of Env config */
|
2019-03-27 16:49:26 +08:00
|
|
|
#define BSP_USING_WM_LIBRARIES
|
|
|
|
|
|
|
|
/* W60x Device config */
|
|
|
|
|
|
|
|
#define SOC_W600_A8xx
|
2019-08-03 10:39:03 +08:00
|
|
|
#define W600_EV_BOARD
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of W60x Device config */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
/* On-chip Peripheral Drivers */
|
|
|
|
|
|
|
|
#define BSP_USING_UART
|
|
|
|
#define BSP_USING_UART0
|
|
|
|
#define BSP_USING_PIN
|
|
|
|
#define BSP_USING_WIFI
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of On-chip Peripheral Drivers */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
2019-08-03 10:39:03 +08:00
|
|
|
/* External Libraries */
|
2019-03-27 16:49:26 +08:00
|
|
|
|
2019-08-03 10:39:03 +08:00
|
|
|
#define WM_USING_ONESHOT
|
2021-10-14 14:48:32 +08:00
|
|
|
/* end of External Libraries */
|
|
|
|
#define SOC_W60X
|
2019-03-27 16:49:26 +08:00
|
|
|
|
|
|
|
#endif
|