Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
rt-thread
提交
8430b832
R
rt-thread
项目概览
BaiXuePrincess
/
rt-thread
与 Fork 源项目一致
Fork自
RT-Thread / rt-thread
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
rt-thread
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
8430b832
编写于
6月 14, 2018
作者:
X
xieyangrun
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'master' of
https://github.com/RT-Thread/rt-thread
into fixSrcRemove
上级
86ae6146
54674308
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
585 addition
and
1348 deletion
+585
-1348
bsp/stm32f40x/drivers/stm32f4_rtc.c
bsp/stm32f40x/drivers/stm32f4_rtc.c
+1
-1
bsp/stm32f429-armfly/.config
bsp/stm32f429-armfly/.config
+52
-21
bsp/stm32f429-armfly/drivers/drv_eth.c
bsp/stm32f429-armfly/drivers/drv_eth.c
+112
-305
bsp/stm32f429-armfly/project.uvprojx
bsp/stm32f429-armfly/project.uvprojx
+381
-897
bsp/stm32f429-armfly/rtconfig.h
bsp/stm32f429-armfly/rtconfig.h
+12
-108
bsp/stm32f429-armfly/template.uvprojx
bsp/stm32f429-armfly/template.uvprojx
+17
-14
libcpu/arm/cortex-m3/context_gcc.S
libcpu/arm/cortex-m3/context_gcc.S
+1
-1
tools/vsc.py
tools/vsc.py
+9
-1
未找到文件。
bsp/stm32f40x/drivers/stm32f4_rtc.c
浏览文件 @
8430b832
...
...
@@ -23,7 +23,7 @@ static int get_week(int year, int month, int day)
year
-=
1
;
month
+=
12
;
}
return
(
day
+
1
+
2
*
month
+
3
*
(
month
+
1
)
/
5
+
year
+
(
year
/
4
)
-
year
/
100
+
year
/
400
)
%
7
;
return
(
day
+
1
+
2
*
month
+
3
*
(
month
+
1
)
/
5
+
year
+
(
year
/
4
)
-
year
/
100
+
year
/
400
)
%
7
+
1
;
}
static
struct
rt_device
rtc
;
...
...
bsp/stm32f429-armfly/.config
浏览文件 @
8430b832
...
...
@@ -47,6 +47,7 @@ CONFIG_RT_USING_HEAP=y
# Kernel Device Object
#
CONFIG_RT_USING_DEVICE
=
y
# CONFIG_RT_USING_DEVICE_OPS is not set
# CONFIG_RT_USING_INTERRUPT_INFO is not set
CONFIG_RT_USING_CONSOLE
=
y
CONFIG_RT_CONSOLEBUF_SIZE
=
128
...
...
@@ -76,6 +77,7 @@ CONFIG_FINSH_USING_HISTORY=y
CONFIG_FINSH_HISTORY_LINES
=
5
CONFIG_FINSH_USING_SYMTAB
=
y
CONFIG_FINSH_USING_DESCRIPTION
=
y
# CONFIG_FINSH_ECHO_DISABLE_DEFAULT is not set
CONFIG_FINSH_THREAD_PRIORITY
=
20
CONFIG_FINSH_THREAD_STACK_SIZE
=
4096
CONFIG_FINSH_CMD_SIZE
=
80
...
...
@@ -83,6 +85,7 @@ CONFIG_FINSH_CMD_SIZE=80
CONFIG_FINSH_USING_MSH
=
y
CONFIG_FINSH_USING_MSH_DEFAULT
=
y
# CONFIG_FINSH_USING_MSH_ONLY is not set
CONFIG_FINSH_ARG_MAX
=
10
#
# Device virtual file system
...
...
@@ -111,8 +114,6 @@ CONFIG_RT_DFS_ELM_MAX_SECTOR_SIZE=4096
CONFIG_RT_DFS_ELM_REENTRANT
=
y
CONFIG_RT_USING_DFS_DEVFS
=
y
CONFIG_RT_USING_DFS_NET
=
y
CONFIG_HAVE_SYS_SELECT_H
=
y
# CONFIG_HAVE_SYS_SOCKET_H is not set
# CONFIG_RT_USING_DFS_ROMFS is not set
# CONFIG_RT_USING_DFS_RAMFS is not set
# CONFIG_RT_USING_DFS_UFFS is not set
...
...
@@ -130,6 +131,7 @@ CONFIG_RT_USING_SERIAL=y
CONFIG_RT_USING_I2C
=
y
CONFIG_RT_USING_I2C_BITOPS
=
y
CONFIG_RT_USING_PIN
=
y
# CONFIG_RT_USING_PWM is not set
# CONFIG_RT_USING_MTD_NOR is not set
# CONFIG_RT_USING_MTD_NAND is not set
CONFIG_RT_USING_RTC
=
y
...
...
@@ -145,6 +147,7 @@ CONFIG_RT_USING_W25QXX=y
# CONFIG_RT_USING_SPI_WIFI is not set
# CONFIG_RT_USING_WDT is not set
# CONFIG_RT_USING_WIFI is not set
# CONFIG_RT_USING_AUDIO is not set
#
# Using USB
...
...
@@ -161,7 +164,7 @@ CONFIG_RT_USING_POSIX=y
# CONFIG_RT_USING_POSIX_MMAP is not set
# CONFIG_RT_USING_POSIX_TERMIOS is not set
# CONFIG_RT_USING_POSIX_AIO is not set
# CONFIG_
HAVE_SYS_SIGNALS
is not set
# CONFIG_
RT_USING_LWP
is not set
#
# Network stack
...
...
@@ -190,7 +193,7 @@ CONFIG_RT_LWIP_GWADDR="192.168.1.1"
CONFIG_RT_LWIP_MSKADDR
=
"255.255.255.0"
CONFIG_RT_LWIP_UDP
=
y
CONFIG_RT_LWIP_TCP
=
y
# CONFIG_RT_LWIP_RAW is not set
CONFIG_RT_LWIP_RAW
=
y
# CONFIG_RT_LWIP_PPP is not set
CONFIG_RT_MEMP_NUM_NETCONN
=
8
CONFIG_RT_LWIP_PBUF_NUM
=
16
...
...
@@ -203,8 +206,10 @@ CONFIG_RT_LWIP_TCP_WND=8192
CONFIG_RT_LWIP_TCPTHREAD_PRIORITY
=
12
CONFIG_RT_LWIP_TCPTHREAD_MBOX_SIZE
=
4
CONFIG_RT_LWIP_TCPTHREAD_STACKSIZE
=
1024
# CONFIG_LWIP_NO_RX_THREAD is not set
# CONFIG_LWIP_NO_TX_THREAD is not set
CONFIG_RT_LWIP_ETHTHREAD_PRIORITY
=
15
CONFIG_RT_LWIP_ETHTHREAD_STACKSIZE
=
512
CONFIG_RT_LWIP_ETHTHREAD_STACKSIZE
=
1024
CONFIG_RT_LWIP_ETHTHREAD_MBOX_SIZE
=
4
# CONFIG_RT_LWIP_REASSEMBLY_FRAG is not set
CONFIG_LWIP_NETIF_STATUS_CALLBACK
=
1
...
...
@@ -242,28 +247,19 @@ CONFIG_LWIP_NETIF_LOOPBACK=0
# RT-Thread online packages
#
#
# system packages
#
#
# RT-Thread GUI Engine
#
# CONFIG_PKG_USING_GUIENGINE is not set
# CONFIG_PKG_USING_PERSIMMON is not set
# CONFIG_PKG_USING_LWEXT4 is not set
# CONFIG_PKG_USING_PARTITION is not set
# CONFIG_PKG_USING_SQLITE is not set
# CONFIG_PKG_USING_RTI is not set
#
# IoT - internet of things
#
# CONFIG_PKG_USING_PAHOMQTT is not set
# CONFIG_PAHOMQTT_PIPE_MODE is not set
# CONFIG_PAHOMQTT_UDP_MODE is not set
# CONFIG_PKG_USING_PAHOMQTT_LATEST is not set
# CONFIG_PKG_USING_PAHOMQTT_V100 is not set
# CONFIG_PKG_USING_WEBCLIENT is not set
# CONFIG_PKG_USING_MONGOOSE is not set
# CONFIG_PKG_USING_WEBTERMINAL is not set
# CONFIG_PKG_USING_CJSON is not set
# CONFIG_PKG_USING_JSMN is not set
# CONFIG_PKG_USING_LJSON is not set
# CONFIG_PKG_USING_EZXML is not set
# CONFIG_PKG_USING_NANOPB is not set
...
...
@@ -285,6 +281,9 @@ CONFIG_LWIP_NETIF_LOOPBACK=0
# CONFIG_PKG_USING_COAP is not set
# CONFIG_PKG_USING_NOPOLL is not set
# CONFIG_PKG_USING_NETUTILS is not set
# CONFIG_PKG_USING_NETUTILS_LATEST_VERSION is not set
# CONFIG_PKG_USING_NETUTILS_V100 is not set
# CONFIG_PKG_USING_ONENET is not set
#
# security packages
...
...
@@ -292,6 +291,9 @@ CONFIG_LWIP_NETIF_LOOPBACK=0
# CONFIG_PKG_USING_MBEDTLS is not set
# CONFIG_PKG_USING_libsodium is not set
# CONFIG_PKG_USING_TINYCRYPT is not set
# CONFIG_PKG_USING_TINYCRYPT_V110 is not set
# CONFIG_PKG_USING_TINYCRYPT_V100 is not set
# CONFIG_PKG_USING_TINYCRYPT_LATEST_VERSION is not set
#
# language packages
...
...
@@ -303,14 +305,35 @@ CONFIG_LWIP_NETIF_LOOPBACK=0
# multimedia packages
#
# CONFIG_PKG_USING_OPENMV is not set
# CONFIG_PKG_USING_MUPDF is not set
#
# tools packages
#
# CONFIG_PKG_USING_CMBACKTRACE is not set
# CONFIG_PKG_USING_EASYFLASH is not set
# CONFIG_PKG_USING_EASYLOGGER is not set
# CONFIG_PKG_USING_SYSTEMVIEW is not set
# CONFIG_PKG_USING_IPERF is not set
#
# system packages
#
# CONFIG_PKG_USING_GUIENGINE is not set
# CONFIG_PKG_USING_PERSIMMON is not set
# CONFIG_PKG_USING_CAIRO is not set
# CONFIG_PKG_USING_PIXMAN is not set
# CONFIG_PKG_USING_LWEXT4 is not set
# CONFIG_PKG_USING_PARTITION is not set
# CONFIG_PKG_USING_FAL is not set
# CONFIG_PKG_USING_SQLITE is not set
# CONFIG_PKG_USING_RTI is not set
# CONFIG_PKG_USING_LITTLEVGL2RTT is not set
#
# peripheral libraries and drivers
#
# CONFIG_PKG_USING_STM32F4_HAL is not set
# CONFIG_PKG_USING_STM32F4_DRIVERS is not set
#
# miscellaneous packages
...
...
@@ -318,12 +341,20 @@ CONFIG_LWIP_NETIF_LOOPBACK=0
# CONFIG_PKG_USING_FASTLZ is not set
# CONFIG_PKG_USING_MINILZO is not set
# CONFIG_PKG_USING_QUICKLZ is not set
# CONFIG_PKG_USING_MULTIBUTTON is not set
# CONFIG_PKG_USING_CANFESTIVAL is not set
# CONFIG_PKG_USING_ZLIB is not set
# CONFIG_PKG_USING_DSTR is not set
#
# sample package
#
# CONFIG_PKG_USING_SAMPLES is not set
#
# example package: hello
#
# CONFIG_PKG_USING_HELLO is not set
# CONFIG_PKG_USING_MULTIBUTTON is not set
CONFIG_RT_USING_EXT_SDRAM
=
y
CONFIG_RT_USING_UART1
=
y
# CONFIG_RT_USING_UART2 is not set
...
...
bsp/stm32f429-armfly/drivers/drv_eth.c
浏览文件 @
8430b832
...
...
@@ -12,17 +12,11 @@
* 2017-06-08 tanek first implementation
*/
#include <rtthread.h>
#include <netif/ethernetif.h>
#include "lwipopts.h"
#include "board.h"
#include <rtdevice.h>
#ifdef RT_USING_FINSH
#include <finsh.h>
#endif
#ifdef RT_USING_LWIP
#include <netif/ethernetif.h>
#include "lwipopts.h"
/* debug option */
//#define DEBUG
...
...
@@ -35,68 +29,39 @@
#define STM32_ETH_PRINTF(...)
#endif
#define MAX_ADDR_LEN 6
#define DM9161_PHY_ADDRESS 0x01U
/* DP83848C and DM9161 PHY Registers is the same */
#define PHY_REG_BMCR 0x00
/* Basic Mode Control Register */
#define PHY_REG_BMSR 0x01
/* Basic Mode Status Register */
#define PHY_REG_IDR1 0x02
/* PHY Identifier 1 */
#define PHY_REG_IDR2 0x03
/* PHY Identifier 2 */
#define PHY_REG_ANAR 0x04
/* Auto-Negotiation Advertisement */
#define PHY_REG_ANLPAR 0x05
/* Auto-Neg. Link Partner Abitily */
#define PHY_REG_ANER 0x06
/* Auto-Neg. Expansion Register */
#define PHY_REG_ANNPTR 0x07
/* Auto-Neg. Next Page TX .DM9161 NO */
/* PHY Extended Registers only for DP83848C */
#define PHY_REG_STS 0x10
/* Status Register */
#define PHY_REG_MICR 0x11
/* MII Interrupt Control Register */
#define PHY_REG_MISR 0x12
/* MII Interrupt Status Register */
#define PHY_REG_FCSCR 0x14
/* False Carrier Sense Counter */
#define PHY_REG_RECR 0x15
/* Receive Error Counter */
#define PHY_REG_PCSR 0x16
/* PCS Sublayer Config. and Status */
#define PHY_REG_RBR 0x17
/* RMII and Bypass Register */
#define PHY_REG_LEDCR 0x18
/* LED Direct Control Register */
#define PHY_REG_PHYCR 0x19
/* PHY Control Register */
#define PHY_REG_10BTSCR 0x1A
/* 10Base-T Status/Control Register */
#define PHY_REG_CDCTRL1 0x1B
/* CD Test Control and BIST Extens. */
#define PHY_REG_EDCR 0x1D
/* Energy Detect Control Register */
/* PHY Extended Registers only for DM9161 */
#define PHY_REG_DSCR 0x10
/* Specified Congfiguration Register */
#define PHY_REG_DSCSR 0x11
/* Specified Congfiguration and Status Register */
#define PHY_REG_10BTCSR 0x12
/* 10Base-T Status/Control Register */
#define PHY_REG_PWDOR 0x13
/* Power Down Control Register */
#define PHY_REG_CONGFIG 0x14
/* Specified Congfig Register */
#define PHY_REG_INTERRUPT 0x15
/* Specified interrupt Register */
#define PHY_REG_SRECR 0x16
/* Specified Receive Error Counter */
#define PHY_REG_DISCR 0x17
/* Specified Disconnect Counter Register */
#define PHY_REG_RLSR 0x18
/* Hardware reset latch state Register */
#define PHY_REG_PSCR 0x1D
/* Power Saving control register */
/* Register BMCR bit defination */
#define PHY_BMCR_FULLD_100M 0x2100
/* Full Duplex 100Mbit */
#define PHY_BMCR_HALFD_100M 0x2000
/* Half Duplex 100Mbit */
#define PHY_BMCR_FULLD_10M 0x0100
/* Full Duplex 10Mbit */
#define PHY_BMCR_HALFD_10M 0x0000
/* Half Duplex 10MBit */
#define PHY_BMCR_AUTO_NEG 0x1000
/* Select Auto Negotiation */
#define PHY_BMCR_RESET ((uint16_t)0x8000U)
/*!< PHY Reset */
#define PHY_BMCR_POWERDOWN ((uint16_t)0x0800U)
/*!< Select the power down mode */
#define PHY_BMSR_AUTONEGO_COMPLETE ((uint16_t)0x0020U)
/*!< Auto-Negotiation process completed */
#define PHY_BMSR_LINKED_STATUS ((uint16_t)0x0004U)
/*!< Valid link established */
#define PHY_DSCSR_100FDX ((uint16_t)0x8000U)
#define PHY_DSCSR_100HDX ((uint16_t)0x4000U)
#define PHY_DSCSR_10FDX ((uint16_t)0x2000U)
#define PHY_DSCSR_10HDX ((uint16_t)0x1000U)
#define PHY_INT_LINK_MASK ((uint16_t)0x0C00U)
#define PHY_INT_LINK_CHANGE ((uint16_t)0x0004U)
/* RMII GPIO
ETH_MDIO -------------------------> PA2
ETH_MDC --------------------------> PC1
ETH_RMII_REF_CLK------------------> PA1
ETH_RMII_CRS_DV ------------------> PA7
ETH_RMII_RXD0 --------------------> PC4
ETH_RMII_RXD1 --------------------> PC5
ETH_RMII_TX_EN -------------------> PB11
ETH_RMII_TXD0 --------------------> PG13
ETH_RMII_TXD1 --------------------> PG14
*/
#define ETH_MDIO_PORN GPIOA
#define ETH_MDIO_PIN GPIO_PIN_2
#define ETH_MDC_PORN GPIOC
#define ETH_MDC_PIN GPIO_PIN_1
#define ETH_RMII_REF_CLK_PORN GPIOA
#define ETH_RMII_REF_CLK_PIN GPIO_PIN_1
#define ETH_RMII_CRS_DV_PORN GPIOA
#define ETH_RMII_CRS_DV_PIN GPIO_PIN_7
#define ETH_RMII_RXD0_PORN GPIOC
#define ETH_RMII_RXD0_PIN GPIO_PIN_4
#define ETH_RMII_RXD1_PORN GPIOC
#define ETH_RMII_RXD1_PIN GPIO_PIN_5
#define ETH_RMII_TX_EN_PORN GPIOG
#define ETH_RMII_TX_EN_PIN GPIO_PIN_11
#define ETH_RMII_TXD0_PORN GPIOG
#define ETH_RMII_TXD0_PIN GPIO_PIN_13
#define ETH_RMII_TXD1_PORN GPIOB
#define ETH_RMII_TXD1_PIN GPIO_PIN_13
#define PHY_ADDRESS 0x01
#define MAX_ADDR_LEN 6
struct
rt_stm32_eth
{
/* inherit from ethernet device */
...
...
@@ -110,75 +75,13 @@ struct rt_stm32_eth
};
ALIGN
(
4
)
ETH_DMADescTypeDef
DMARxDscrTab
[
ETH_RXBUFNB
];
ALIGN
(
4
)
ETH_DMADescTypeDef
DMATxDscrTab
[
ETH_TXBUFNB
];
ALIGN
(
4
)
rt_uint8_t
Rx_Buff
[
ETH_RXBUFNB
][
ETH_MAX_PACKET_SIZE
];
ALIGN
(
4
)
rt_uint8_t
Tx_Buff
[
ETH_TXBUFNB
][
ETH_MAX_PACKET_SIZE
];
static
ETH_DMADescTypeDef
DMARxDscrTab
[
ETH_RXBUFNB
],
DMATxDscrTab
[
ETH_TXBUFNB
];
static
rt_uint8_t
Rx_Buff
[
ETH_RXBUFNB
][
ETH_MAX_PACKET_SIZE
],
Tx_Buff
[
ETH_TXBUFNB
][
ETH_MAX_PACKET_SIZE
];
static
rt_bool_t
tx_is_waiting
=
RT_FALSE
;
static
ETH_HandleTypeDef
EthHandle
;
static
struct
rt_stm32_eth
stm32_eth_device
;
static
struct
rt_semaphore
tx_wait
;
void
HAL_ETH_MspInit
(
ETH_HandleTypeDef
*
heth
)
{
GPIO_InitTypeDef
GPIO_InitStruct
;
if
(
heth
->
Instance
==
ETH
)
{
/* USER CODE BEGIN ETH_MspInit 0 */
/* USER CODE END ETH_MspInit 0 */
/* Peripheral clock enable */
__HAL_RCC_ETH_CLK_ENABLE
();
__HAL_RCC_GPIOA_CLK_ENABLE
();
__HAL_RCC_GPIOC_CLK_ENABLE
();
__HAL_RCC_GPIOG_CLK_ENABLE
();
/**ETH GPIO Configuration
PC1 ------> ETH_MDC
PA1 ------> ETH_REF_CLK
PA2 ------> ETH_MDIO
PA7 ------> ETH_CRS_DV
PC4 ------> ETH_RXD0
PC5 ------> ETH_RXD1
PG11 ------> ETH_TX_EN
PG13 ------> ETH_TXD0
PB13 ------> ETH_TXD1
*/
GPIO_InitStruct
.
Pin
=
GPIO_PIN_1
|
GPIO_PIN_2
|
GPIO_PIN_7
;
GPIO_InitStruct
.
Mode
=
GPIO_MODE_AF_PP
;
GPIO_InitStruct
.
Pull
=
GPIO_NOPULL
;
GPIO_InitStruct
.
Speed
=
GPIO_SPEED_FREQ_VERY_HIGH
;
GPIO_InitStruct
.
Alternate
=
GPIO_AF11_ETH
;
HAL_GPIO_Init
(
GPIOA
,
&
GPIO_InitStruct
);
GPIO_InitStruct
.
Pin
=
GPIO_PIN_13
;
GPIO_InitStruct
.
Mode
=
GPIO_MODE_AF_PP
;
GPIO_InitStruct
.
Pull
=
GPIO_NOPULL
;
GPIO_InitStruct
.
Speed
=
GPIO_SPEED_FREQ_VERY_HIGH
;
GPIO_InitStruct
.
Alternate
=
GPIO_AF11_ETH
;
HAL_GPIO_Init
(
GPIOB
,
&
GPIO_InitStruct
);
GPIO_InitStruct
.
Pin
=
GPIO_PIN_1
|
GPIO_PIN_4
|
GPIO_PIN_5
;
GPIO_InitStruct
.
Mode
=
GPIO_MODE_AF_PP
;
GPIO_InitStruct
.
Pull
=
GPIO_NOPULL
;
GPIO_InitStruct
.
Speed
=
GPIO_SPEED_FREQ_VERY_HIGH
;
GPIO_InitStruct
.
Alternate
=
GPIO_AF11_ETH
;
HAL_GPIO_Init
(
GPIOC
,
&
GPIO_InitStruct
);
GPIO_InitStruct
.
Pin
=
GPIO_PIN_11
|
GPIO_PIN_13
;
GPIO_InitStruct
.
Mode
=
GPIO_MODE_AF_PP
;
GPIO_InitStruct
.
Pull
=
GPIO_NOPULL
;
GPIO_InitStruct
.
Speed
=
GPIO_SPEED_FREQ_VERY_HIGH
;
GPIO_InitStruct
.
Alternate
=
GPIO_AF11_ETH
;
HAL_GPIO_Init
(
GPIOG
,
&
GPIO_InitStruct
);
/* ETH interrupt Init */
HAL_NVIC_SetPriority
(
ETH_IRQn
,
1
,
0
);
HAL_NVIC_EnableIRQ
(
ETH_IRQn
);
}
}
/* interrupt service routine */
void
ETH_IRQHandler
(
void
)
{
...
...
@@ -213,165 +116,7 @@ void HAL_ETH_ErrorCallback(ETH_HandleTypeDef *heth)
rt_kprintf
(
"eth err
\n
"
);
}
/**
* @brief This function handles EXTI line[9:5] interrupts.
*/
void
EXTI9_5_IRQHandler
(
void
)
{
HAL_GPIO_EXTI_IRQHandler
(
GPIO_PIN_6
);
}
void
HAL_GPIO_EXTI_Callback
(
uint16_t
GPIO_Pin
)
{
uint32_t
reg_value
=
0
;
int
i
=
10
;
if
(
GPIO_Pin
==
GPIO_PIN_6
)
{
HAL_ETH_ReadPHYRegister
(
&
EthHandle
,
PHY_REG_INTERRUPT
,
&
reg_value
);
if
(
reg_value
&
PHY_INT_LINK_CHANGE
)
{
do
{
HAL_ETH_ReadPHYRegister
(
&
EthHandle
,
PHY_REG_BMSR
,
&
reg_value
);
if
(
reg_value
&
PHY_BMSR_LINKED_STATUS
)
{
eth_device_linkchange
(
&
stm32_eth_device
.
parent
,
RT_TRUE
);
STM32_ETH_PRINTF
(
"eth phy link up
\n
"
);
return
;
}
}
while
(
i
--
);
eth_device_linkchange
(
&
stm32_eth_device
.
parent
,
RT_FALSE
);
STM32_ETH_PRINTF
(
"eth phy link down
\n
"
);
}
}
}
static
void
phy_register_read
(
int
reg
)
{
uint32_t
value
;
if
(
reg
>
0xFF
||
reg
<
0
)
rt_kprintf
(
"reg address error: %d"
,
reg
);
HAL_ETH_ReadPHYRegister
(
&
EthHandle
,
reg
,
&
value
);
rt_kprintf
(
"reg: %02X ==> %08X
\n
"
,
reg
,
value
);
}
#ifdef RT_USING_FINSH
FINSH_FUNCTION_EXPORT_ALIAS
(
phy_register_read
,
phyrd
,
read
phy
registers
);
#endif
static
void
phy_register_write
(
rt_uint16_t
reg
,
rt_uint32_t
value
)
{
if
(
reg
>
0xFF
)
rt_kprintf
(
"reg address error: %d"
,
reg
);
HAL_ETH_WritePHYRegister
(
&
EthHandle
,
reg
,
value
);
rt_kprintf
(
"reg: %02X ==> %08X
\n
"
,
reg
,
value
);
}
#ifdef RT_USING_FINSH
FINSH_FUNCTION_EXPORT_ALIAS
(
phy_register_write
,
phywr
,
write
phy
registers
);
#endif
void
eth_link_exit_config
(
void
)
{
GPIO_InitTypeDef
GPIO_InitStruct
;
__HAL_RCC_GPIOH_CLK_ENABLE
();
/*Configure GPIO pin : PH6 */
GPIO_InitStruct
.
Pin
=
GPIO_PIN_6
;
GPIO_InitStruct
.
Mode
=
GPIO_MODE_IT_FALLING
;
GPIO_InitStruct
.
Pull
=
GPIO_NOPULL
;
HAL_GPIO_Init
(
GPIOH
,
&
GPIO_InitStruct
);
/* EXTI9_5_IRQn interrupt configuration */
HAL_NVIC_SetPriority
(
EXTI9_5_IRQn
,
0
,
0
);
HAL_NVIC_EnableIRQ
(
EXTI9_5_IRQn
);
}
rt_err_t
eth_phy_init
(
void
)
{
uint32_t
reg_value
=
0
;
int
i
,
j
,
k
;
HAL_ETH_WritePHYRegister
(
&
EthHandle
,
PHY_REG_BMCR
,
PHY_RESET
);
for
(
i
=
0x10000
;
i
>
0
;
i
--
)
{
HAL_ETH_ReadPHYRegister
(
&
EthHandle
,
PHY_REG_BMCR
,
&
reg_value
);
if
(
!
(
reg_value
&
(
PHY_BMCR_RESET
|
PHY_BMCR_POWERDOWN
)))
{
STM32_ETH_PRINTF
(
"PHY Reset Finsh
\n
"
);
break
;
}
}
if
(
i
<=
0
)
{
STM32_ETH_PRINTF
(
"PHY Power Up Error: %08X
\n
"
,
reg_value
);
return
-
RT_ETIMEOUT
;
}
HAL_ETH_WritePHYRegister
(
&
EthHandle
,
PHY_REG_BMCR
,
PHY_AUTONEGOTIATION
);
for
(
j
=
0x10000
;
j
>
0
;
j
--
)
{
HAL_ETH_ReadPHYRegister
(
&
EthHandle
,
PHY_REG_BMSR
,
&
reg_value
);
if
(
reg_value
&
PHY_BMSR_AUTONEGO_COMPLETE
)
{
STM32_ETH_PRINTF
(
"Autonegotiation Complete
\n
"
);
/* Autonegotiation Complete. */
break
;
}
}
if
(
j
<=
0
)
{
STM32_ETH_PRINTF
(
"Autonegotiation failed: %08X
\n
"
,
reg_value
);
return
-
RT_ETIMEOUT
;
}
/* Check the link status. */
for
(
k
=
0x10000
;
k
>
0
;
k
--
)
{
HAL_ETH_ReadPHYRegister
(
&
EthHandle
,
PHY_REG_BMSR
,
&
reg_value
);
if
(
reg_value
&
PHY_LINKED_STATUS
)
{
/* Link */
/* Link is on, get connection info */
HAL_ETH_ReadPHYRegister
(
&
EthHandle
,
PHY_REG_DSCSR
,
&
reg_value
);
if
((
reg_value
&
(
PHY_DSCSR_100FDX
|
PHY_DSCSR_100HDX
)))
STM32_ETH_PRINTF
(
"100M "
);
else
STM32_ETH_PRINTF
(
"10M "
);
if
((
reg_value
&
(
PHY_DSCSR_100FDX
|
PHY_DSCSR_10FDX
)))
STM32_ETH_PRINTF
(
"Full"
);
else
STM32_ETH_PRINTF
(
"Half"
);
STM32_ETH_PRINTF
(
" Duplex Operation Mode
\n
"
);
break
;
}
}
if
(
k
<=
0
)
{
STM32_ETH_PRINTF
(
"check link status failed: %08X
\n
"
,
reg_value
);
return
-
RT_ETIMEOUT
;
}
HAL_ETH_WritePHYRegister
(
&
EthHandle
,
PHY_REG_INTERRUPT
,
PHY_INT_LINK_MASK
);
STM32_ETH_PRINTF
(
"Reset try: %d
\n
"
,
i
);
STM32_ETH_PRINTF
(
"Autonegotiation try: %d
\n
"
,
j
);
STM32_ETH_PRINTF
(
"Check try: %d
\n
"
,
k
);
return
RT_EOK
;
}
/* initialize the interface */
static
rt_err_t
rt_stm32_eth_init
(
rt_device_t
dev
)
...
...
@@ -380,6 +125,7 @@ static rt_err_t rt_stm32_eth_init(rt_device_t dev)
__HAL_RCC_ETH_CLK_ENABLE
();
/* ETHERNET Configuration --------------------------------------------------*/
EthHandle
.
Instance
=
ETH
;
EthHandle
.
Init
.
MACAddr
=
(
rt_uint8_t
*
)
&
stm32_eth_device
.
dev_addr
[
0
];
...
...
@@ -389,8 +135,7 @@ static rt_err_t rt_stm32_eth_init(rt_device_t dev)
EthHandle
.
Init
.
MediaInterface
=
ETH_MEDIA_INTERFACE_RMII
;
EthHandle
.
Init
.
RxMode
=
ETH_RXINTERRUPT_MODE
;
EthHandle
.
Init
.
ChecksumMode
=
ETH_CHECKSUM_BY_SOFTWARE
;
//EthHandle.Init.ChecksumMode = ETH_CHECKSUM_BY_HARDWARE;
EthHandle
.
Init
.
PhyAddress
=
DM9161_PHY_ADDRESS
;
EthHandle
.
Init
.
PhyAddress
=
PHY_ADDRESS
;
HAL_ETH_DeInit
(
&
EthHandle
);
...
...
@@ -403,7 +148,7 @@ static rt_err_t rt_stm32_eth_init(rt_device_t dev)
{
STM32_ETH_PRINTF
(
"eth hardware init faild...
\n
"
);
}
/* Initialize Tx Descriptors list: Chain Mode */
HAL_ETH_DMATxDescListInit
(
&
EthHandle
,
DMATxDscrTab
,
&
Tx_Buff
[
0
][
0
],
ETH_TXBUFNB
);
...
...
@@ -420,8 +165,6 @@ static rt_err_t rt_stm32_eth_init(rt_device_t dev)
STM32_ETH_PRINTF
(
"eth hardware start faild...
\n
"
);
}
eth_phy_init
();
eth_link_exit_config
();
return
RT_EOK
;
}
...
...
@@ -526,9 +269,7 @@ rt_err_t rt_stm32_eth_tx( rt_device_t dev, struct pbuf* p)
while
(
(
byteslefttocopy
+
bufferoffset
)
>
ETH_TX_BUF_SIZE
)
{
/* Copy data to Tx buffer*/
memcpy
(
(
uint8_t
*
)((
uint8_t
*
)
buffer
+
bufferoffset
),
(
uint8_t
*
)((
uint8_t
*
)
q
->
payload
+
payloadoffset
),
(
ETH_TX_BUF_SIZE
-
bufferoffset
)
);
memcpy
(
(
uint8_t
*
)((
uint8_t
*
)
buffer
+
bufferoffset
),
(
uint8_t
*
)((
uint8_t
*
)
q
->
payload
+
payloadoffset
),
(
ETH_TX_BUF_SIZE
-
bufferoffset
)
);
/* Point to next descriptor */
DmaTxDesc
=
(
ETH_DMADescTypeDef
*
)(
DmaTxDesc
->
Buffer2NextDescAddr
);
...
...
@@ -550,9 +291,7 @@ rt_err_t rt_stm32_eth_tx( rt_device_t dev, struct pbuf* p)
}
/* Copy the remaining bytes */
memcpy
(
(
uint8_t
*
)((
uint8_t
*
)
buffer
+
bufferoffset
),
(
uint8_t
*
)((
uint8_t
*
)
q
->
payload
+
payloadoffset
),
byteslefttocopy
);
memcpy
(
(
uint8_t
*
)((
uint8_t
*
)
buffer
+
bufferoffset
),
(
uint8_t
*
)((
uint8_t
*
)
q
->
payload
+
payloadoffset
),
byteslefttocopy
);
bufferoffset
=
bufferoffset
+
byteslefttocopy
;
framelength
=
framelength
+
byteslefttocopy
;
}
...
...
@@ -627,7 +366,7 @@ struct pbuf *rt_stm32_eth_rx(rt_device_t dev)
state
=
HAL_ETH_GetReceivedFrame_IT
(
&
EthHandle
);
if
(
state
!=
HAL_OK
)
{
//
STM32_ETH_PRINTF("receive frame faild\n");
STM32_ETH_PRINTF
(
"receive frame faild
\n
"
);
return
NULL
;
}
...
...
@@ -721,6 +460,72 @@ struct pbuf *rt_stm32_eth_rx(rt_device_t dev)
return
p
;
}
static
void
NVIC_Configuration
(
void
)
{
/* Enable the Ethernet global Interrupt */
HAL_NVIC_SetPriority
(
ETH_IRQn
,
0x7
,
0
);
HAL_NVIC_EnableIRQ
(
ETH_IRQn
);
}
/*
* GPIO Configuration for ETH
*/
static
void
GPIO_Configuration
(
void
)
{
GPIO_InitTypeDef
GPIO_InitStructure
;
STM32_ETH_PRINTF
(
"GPIO_Configuration...
\n
"
);
/* Enable SYSCFG clock */
__HAL_RCC_ETH_CLK_ENABLE
();
__HAL_RCC_GPIOA_CLK_ENABLE
();
__HAL_RCC_GPIOB_CLK_ENABLE
();
__HAL_RCC_GPIOC_CLK_ENABLE
();
__HAL_RCC_GPIOG_CLK_ENABLE
();
GPIO_InitStructure
.
Speed
=
GPIO_SPEED_HIGH
;
GPIO_InitStructure
.
Mode
=
GPIO_MODE_AF_PP
;
GPIO_InitStructure
.
Alternate
=
GPIO_AF11_ETH
;
GPIO_InitStructure
.
Pull
=
GPIO_NOPULL
;
GPIO_InitStructure
.
Pin
=
ETH_MDIO_PIN
;
HAL_GPIO_Init
(
ETH_MDIO_PORN
,
&
GPIO_InitStructure
);
GPIO_InitStructure
.
Pin
=
ETH_MDC_PIN
;
HAL_GPIO_Init
(
ETH_MDC_PORN
,
&
GPIO_InitStructure
);
GPIO_InitStructure
.
Pin
=
ETH_RMII_REF_CLK_PIN
;
HAL_GPIO_Init
(
ETH_RMII_REF_CLK_PORN
,
&
GPIO_InitStructure
);
GPIO_InitStructure
.
Pin
=
ETH_RMII_CRS_DV_PIN
;
HAL_GPIO_Init
(
ETH_RMII_CRS_DV_PORN
,
&
GPIO_InitStructure
);
GPIO_InitStructure
.
Pin
=
ETH_RMII_REF_CLK_PIN
;
HAL_GPIO_Init
(
ETH_RMII_REF_CLK_PORN
,
&
GPIO_InitStructure
);
GPIO_InitStructure
.
Pin
=
ETH_RMII_CRS_DV_PIN
;
HAL_GPIO_Init
(
ETH_RMII_CRS_DV_PORN
,
&
GPIO_InitStructure
);
GPIO_InitStructure
.
Pin
=
ETH_RMII_RXD0_PIN
;
HAL_GPIO_Init
(
ETH_RMII_RXD0_PORN
,
&
GPIO_InitStructure
);
GPIO_InitStructure
.
Pin
=
ETH_RMII_RXD1_PIN
;
HAL_GPIO_Init
(
ETH_RMII_RXD1_PORN
,
&
GPIO_InitStructure
);
GPIO_InitStructure
.
Pin
=
ETH_RMII_TX_EN_PIN
;
HAL_GPIO_Init
(
ETH_RMII_TX_EN_PORN
,
&
GPIO_InitStructure
);
GPIO_InitStructure
.
Pin
=
ETH_RMII_TXD0_PIN
;
HAL_GPIO_Init
(
ETH_RMII_TXD0_PORN
,
&
GPIO_InitStructure
);
GPIO_InitStructure
.
Pin
=
ETH_RMII_TXD1_PIN
;
HAL_GPIO_Init
(
ETH_RMII_TXD1_PORN
,
&
GPIO_InitStructure
);
HAL_NVIC_SetPriority
(
ETH_IRQn
,
1
,
0
);
HAL_NVIC_EnableIRQ
(
ETH_IRQn
);
}
void
HAL_ETH_MspInit
(
ETH_HandleTypeDef
*
heth
)
{
GPIO_Configuration
();
NVIC_Configuration
();
}
static
int
rt_hw_stm32_eth_init
(
void
)
{
rt_err_t
state
;
...
...
@@ -763,7 +568,9 @@ static int rt_hw_stm32_eth_init(void)
{
STM32_ETH_PRINTF
(
"eth_device_init faild: %d
\r\n
"
,
state
);
}
eth_device_linkchange
(
&
stm32_eth_device
.
parent
,
RT_TRUE
);
//linkup the e0 for lwip to check
return
state
;
}
INIT_DEVICE_EXPORT
(
rt_hw_stm32_eth_init
);
#endif
INIT_APP_EXPORT
(
rt_hw_stm32_eth_init
);
bsp/stm32f429-armfly/project.uvprojx
浏览文件 @
8430b832
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<Project
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation=
"project_projx.xsd"
>
<SchemaVersion>
2.1
</SchemaVersion>
<Header>
### uVision Project, (C) Keil Software
</Header>
<Targets>
<Target>
<TargetName>
rt-thread_stm32f4xx
</TargetName>
<ToolsetNumber>
0x4
</ToolsetNumber>
<ToolsetName>
ARM-ADS
</ToolsetName>
<pCCUsed>
5060750::V5.06 update 6 (build 750)::ARMCC
</pCCUsed>
<uAC6>
0
</uAC6>
<TargetOption>
<TargetCommonOption>
<Device>
STM32F429
ZG
</Device>
<Device>
STM32F429
BITx
</Device>
<Vendor>
STMicroelectronics
</Vendor>
<PackID>
Keil.STM32F4xx_DFP.2.11.0
</PackID>
<PackURL>
http://www.keil.com/pack
</PackURL>
<Cpu>
IRAM(0x20000000,0x30000) IRAM2(0x10000000,0x10000) IROM(0x08000000,0x
1
00000) CPUTYPE("Cortex-M4") FPU2 CLOCK(12000000) ELITTLE
</Cpu>
<FlashUtilSpec
/
>
<StartupFile
/
>
<FlashDriverDll>
UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx_
1024 -FS08000000 -FL0100000 -FP0($$Device:STM32F429ZG$CMSIS\Flash\STM32F4xx_1024
.FLM))
</FlashDriverDll>
<DeviceId>
7029
</DeviceId>
<RegisterFile>
$$Device:STM32F429
ZG
$Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h
</RegisterFile>
<MemoryEnv
/
>
<Cmp
/
>
<Asm
/
>
<Linker
/
>
<OHString
/
>
<InfinionOptionDll
/
>
<SLE66CMisc>
-DSTM32F429_439xx
</SLE66CMisc>
<SLE66AMisc
/
>
<SLE66LinkerMisc
/
>
<SFDFile>
$$Device:STM32F429
ZG
$CMSIS\SVD\STM32F429x.svd
</SFDFile>
<Cpu>
IRAM(0x20000000,0x30000) IRAM2(0x10000000,0x10000) IROM(0x08000000,0x
2
00000) CPUTYPE("Cortex-M4") FPU2 CLOCK(12000000) ELITTLE
</Cpu>
<FlashUtilSpec
></FlashUtilSpec
>
<StartupFile
></StartupFile
>
<FlashDriverDll>
UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx_
2048 -FS08000000 -FL0200000 -FP0($$Device:STM32F429BITx$CMSIS\Flash\STM32F4xx_2048
.FLM))
</FlashDriverDll>
<DeviceId>
0
</DeviceId>
<RegisterFile>
$$Device:STM32F429
BITx
$Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h
</RegisterFile>
<MemoryEnv
></MemoryEnv
>
<Cmp
></Cmp
>
<Asm
></Asm
>
<Linker
></Linker
>
<OHString
></OHString
>
<InfinionOptionDll
></InfinionOptionDll
>
<SLE66CMisc></SLE66CMisc>
<SLE66AMisc
></SLE66AMisc
>
<SLE66LinkerMisc
></SLE66LinkerMisc
>
<SFDFile>
$$Device:STM32F429
BITx
$CMSIS\SVD\STM32F429x.svd
</SFDFile>
<bCustSvd>
0
</bCustSvd>
<UseEnv>
0
</UseEnv>
<BinPath
/
>
<IncludePath
/
>
<LibPath
/
>
<RegisterFilePath
/
>
<DBRegisterFilePath
/
>
<BinPath
></BinPath
>
<IncludePath
></IncludePath
>
<LibPath
></LibPath
>
<RegisterFilePath
></RegisterFilePath
>
<DBRegisterFilePath
></DBRegisterFilePath
>
<TargetStatus>
<Error>
0
</Error>
<ExitCodeStop>
0
</ExitCodeStop>
...
...
@@ -49,7 +54,7 @@
<CreateLib>
0
</CreateLib>
<CreateHexFile>
0
</CreateHexFile>
<DebugInformation>
1
</DebugInformation>
<BrowseInformation>
1
</BrowseInformation>
<BrowseInformation>
0
</BrowseInformation>
<ListingPath>
.\build\
</ListingPath>
<HexFormatSelection>
1
</HexFormatSelection>
<Merge32K>
0
</Merge32K>
...
...
@@ -57,8 +62,8 @@
<BeforeCompile>
<RunUserProg1>
0
</RunUserProg1>
<RunUserProg2>
0
</RunUserProg2>
<UserProg1Name
/
>
<UserProg2Name
/
>
<UserProg1Name
></UserProg1Name
>
<UserProg2Name
></UserProg2Name
>
<UserProg1Dos16Mode>
0
</UserProg1Dos16Mode>
<UserProg2Dos16Mode>
0
</UserProg2Dos16Mode>
<nStopU1X>
0
</nStopU1X>
...
...
@@ -67,8 +72,8 @@
<BeforeMake>
<RunUserProg1>
0
</RunUserProg1>
<RunUserProg2>
0
</RunUserProg2>
<UserProg1Name
/
>
<UserProg2Name
/
>
<UserProg1Name
></UserProg1Name
>
<UserProg2Name
></UserProg2Name
>
<UserProg1Dos16Mode>
0
</UserProg1Dos16Mode>
<UserProg2Dos16Mode>
0
</UserProg2Dos16Mode>
<nStopB1X>
0
</nStopB1X>
...
...
@@ -78,14 +83,14 @@
<RunUserProg1>
1
</RunUserProg1>
<RunUserProg2>
0
</RunUserProg2>
<UserProg1Name>
fromelf --bin !L --output rtthread.bin
</UserProg1Name>
<UserProg2Name
/
>
<UserProg2Name
></UserProg2Name
>
<UserProg1Dos16Mode>
0
</UserProg1Dos16Mode>
<UserProg2Dos16Mode>
0
</UserProg2Dos16Mode>
<nStopA1X>
0
</nStopA1X>
<nStopA2X>
0
</nStopA2X>
</AfterMake>
<SelectedForBatchBuild>
0
</SelectedForBatchBuild>
<SVCSIdString
/
>
<SVCSIdString
></SVCSIdString
>
</TargetCommonOption>
<CommonProperty>
<UseCPPCompiler>
0
</UseCPPCompiler>
...
...
@@ -99,17 +104,17 @@
<AssembleAssemblyFile>
0
</AssembleAssemblyFile>
<PublicsOnly>
0
</PublicsOnly>
<StopOnExitCode>
3
</StopOnExitCode>
<CustomArgument
/
>
<IncludeLibraryModules
/
>
<CustomArgument
></CustomArgument
>
<IncludeLibraryModules
></IncludeLibraryModules
>
<ComprImg>
1
</ComprImg>
</CommonProperty>
<DllOption>
<SimDllName>
SARMCM3.DLL
</SimDllName>
<SimDllArguments>
-MPU -REMAP
</SimDllArguments>
<SimDllArguments>
-REMAP -MPU
</SimDllArguments>
<SimDlgDll>
DCM.DLL
</SimDlgDll>
<SimDlgDllArguments>
-pCM4
</SimDlgDllArguments>
<TargetDllName>
SARMCM3.DLL
</TargetDllName>
<TargetDllArguments>
-MPU
</TargetDllArguments>
<TargetDllArguments>
-MPU
</TargetDllArguments>
<TargetDlgDll>
TCM.DLL
</TargetDlgDll>
<TargetDlgDllArguments>
-pCM4
</TargetDlgDllArguments>
</DllOption>
...
...
@@ -133,11 +138,11 @@
</Flash1>
<bUseTDR>
1
</bUseTDR>
<Flash2>
BIN\UL2CM3.DLL
</Flash2>
<Flash3
/
>
<Flash4
/
>
<pFcarmOut
/
>
<pFcarmGrp
/
>
<pFcArmRoot
/
>
<Flash3
></Flash3
>
<Flash4
></Flash4
>
<pFcarmOut
></pFcarmOut
>
<pFcarmGrp
></pFcarmGrp
>
<pFcArmRoot
></pFcArmRoot
>
<FcArmLst>
0
</FcArmLst>
</Utilities>
<TargetArmAds>
...
...
@@ -170,7 +175,7 @@
<RvctClst>
0
</RvctClst>
<GenPPlst>
0
</GenPPlst>
<AdsCpuType>
"Cortex-M4"
</AdsCpuType>
<RvctDeviceName
/
>
<RvctDeviceName
></RvctDeviceName
>
<mOS>
0
</mOS>
<uocRom>
0
</uocRom>
<uocRam>
0
</uocRam>
...
...
@@ -244,7 +249,7 @@
<IROM>
<Type>
1
</Type>
<StartAddress>
0x8000000
</StartAddress>
<Size>
0x
1
00000
</Size>
<Size>
0x
2
00000
</Size>
</IROM>
<XRAM>
<Type>
0
</Type>
...
...
@@ -269,7 +274,7 @@
<OCR_RVCT4>
<Type>
1
</Type>
<StartAddress>
0x8000000
</StartAddress>
<Size>
0x
1
00000
</Size>
<Size>
0x
2
00000
</Size>
</OCR_RVCT4>
<OCR_RVCT5>
<Type>
1
</Type>
...
...
@@ -302,7 +307,7 @@
<Size>
0x10000
</Size>
</OCR_RVCT10>
</OnChipMemories>
<RvctStartVector
/
>
<RvctStartVector
></RvctStartVector
>
</ArmAdsMisc>
<Cads>
<interw>
1
</interw>
...
...
@@ -319,6 +324,7 @@
<uThumb>
0
</uThumb>
<uSurpInc>
0
</uSurpInc>
<uC99>
0
</uC99>
<uGnu>
0
</uGnu>
<useXO>
0
</useXO>
<v6Lang>
1
</v6Lang>
<v6LangP>
1
</v6LangP>
...
...
@@ -328,10 +334,10 @@
<v6WtE>
0
</v6WtE>
<v6Rtti>
0
</v6Rtti>
<VariousControls>
<MiscControls
/
>
<Define>
USE_HAL_DRIVER, STM32F429xx
</Define>
<Undefine
/
>
<IncludePath>
drivers;applications;.;Libraries/STM32F4xx_HAL_Driver/Inc;Libraries/CMSIS/Device/ST/STM32F4xx/Include;Libraries/CMSIS/Include;../../include;../../libcpu/arm/cortex-m4;../../libcpu/arm/common;../../components/drivers/include;../../components/drivers/include;../../components/drivers/include;../../components/drivers/spi;../../components/drivers/include;../../components/drivers/include;../../components/finsh;../../components/gui/include;../../components/gui/include/rtgui;../../components/gui/include/rtgui/widgets;../../components/gui/src;../../components/net/lwip-2.0.2/src;../../components/net/lwip-2.0.2/src/include;../../components/net/lwip-2.0.2/src/include/ipv4;../../components/net/lwip-2.0.2/src/arch/include;../../components/net/lwip-2.0.2/src/include/netif;../../components/net/lwip-2.0.2/src/include/posix;../../components/dfs/include;../../components/dfs/filesystems/devfs;../../components/dfs/filesystems/elmfat
</IncludePath>
<MiscControls
></MiscControls
>
<Define>
USE_HAL_DRIVER,
RT_USING_ARM_LIBC,
STM32F429xx
</Define>
<Undefine
></Undefine
>
<IncludePath>
applications;.;drivers;Libraries\STM32F4xx_HAL_Driver\Inc;Libraries\CMSIS\Device\ST\STM32F4xx\Include;Libraries\CMSIS\Include;..\..\include;..\..\libcpu\arm\cortex-m4;..\..\libcpu\arm\common;..\..\components\dfs\include;..\..\components\dfs\filesystems\devfs;..\..\components\dfs\filesystems\elmfat;..\..\components\dfs\filesystems\net;..\..\components\dfs\filesystems\net\socket;..\..\components\drivers\include;..\..\components\drivers\include;..\..\components\drivers\include;..\..\components\drivers\include;..\..\components\drivers\spi;..\..\components\drivers\include;..\..\components\drivers\include;..\..\components\finsh;..\..\components\libc\compilers\armlibc;..\..\components\net\lwip-2.0.2\src;..\..\components\net\lwip-2.0.2\src\include;..\..\components\net\lwip-2.0.2\src\include\ipv4;..\..\components\net\lwip-2.0.2\src\arch\include;..\..\components\net\lwip-2.0.2\src\include\netif
</IncludePath>
</VariousControls>
</Cads>
<Aads>
...
...
@@ -346,10 +352,10 @@
<useXO>
0
</useXO>
<uClangAs>
0
</uClangAs>
<VariousControls>
<MiscControls
/
>
<Define
/
>
<Undefine
/
>
<IncludePath
/
>
<MiscControls
></MiscControls
>
<Define
></Define
>
<Undefine
></Undefine
>
<IncludePath
></IncludePath
>
</VariousControls>
</Aads>
<LDads>
...
...
@@ -361,111 +367,79 @@
<useFile>
0
</useFile>
<TextAddressRange>
0x08000000
</TextAddressRange>
<DataAddressRange>
0x20000000
</DataAddressRange>
<pXoBase
/
>
<pXoBase
></pXoBase
>
<ScatterFile>
.\stm32_rom.sct
</ScatterFile>
<IncludeLibs
/
>
<IncludeLibsPath
/
>
<IncludeLibs
></IncludeLibs
>
<IncludeLibsPath
></IncludeLibsPath
>
<Misc>
--keep *.o(.rti_fn.*) --keep *.o(FSymTab) --keep *.o(VSymTab)
</Misc>
<LinkerInputFile
/
>
<DisabledWarnings
/
>
<LinkerInputFile
></LinkerInputFile
>
<DisabledWarnings
></DisabledWarnings
>
</LDads>
</TargetArmAds>
</TargetOption>
<Groups>
<Group>
<GroupName>
Driver
s
</GroupName>
<GroupName>
Application
s
</GroupName>
<Files>
<File>
<FileName>
board
.c
</FileName>
<FileName>
application
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
drivers/board
.c
</FilePath>
<FilePath>
applications\application
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
usart
.c
</FileName>
<FileName>
rtgui_demo
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
drivers/usart
.c
</FilePath>
<FilePath>
applications\rtgui_demo
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
drv_sdram
.c
</FileName>
<FileName>
startup
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
drivers/drv_sdram
.c
</FilePath>
<FilePath>
applications\startup
.c
</FilePath>
</File>
</Files>
</Group>
<Group>
<GroupName>
Drivers
</GroupName>
<Files>
<File>
<FileName>
drv_eth
.c
</FileName>
<FileName>
board
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
drivers
/drv_eth
.c
</FilePath>
<FilePath>
drivers
\board
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
drv_
lcd
.c
</FileName>
<FileName>
drv_
eth
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
drivers
/drv_lcd
.c
</FilePath>
<FilePath>
drivers
\drv_eth
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
drv_i2c.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
drivers/drv_i2c.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
drv_ft5x06.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
drivers/drv_ft5x06.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
drv_spi.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
drivers/drv_spi.c
</FilePath>
<FilePath>
drivers\drv_i2c.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
drv_s
pi_flash
.c
</FileName>
<FileName>
drv_s
dio_sd
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
drivers
/drv_spi_flash
.c
</FilePath>
<FilePath>
drivers
\drv_sdio_sd
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
drv_sd
io_sd
.c
</FileName>
<FileName>
drv_sd
ram
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
drivers
/drv_sdio_sd
.c
</FilePath>
<FilePath>
drivers
\drv_sdram
.c
</FilePath>
</File>
</Files>
</Group>
<Group>
<GroupName>
Applications
</GroupName>
<Files>
<File>
<FileName>
application
.c
</FileName>
<FileName>
drv_spi
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
applications/application
.c
</FilePath>
<FilePath>
drivers\drv_spi
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
rtgui_demo
.c
</FileName>
<FileName>
drv_spi_flash
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
applications/rtgui_demo
.c
</FilePath>
<FilePath>
drivers\drv_spi_flash
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
startup
.c
</FileName>
<FileName>
usart
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
applications/startup
.c
</FilePath>
<FilePath>
drivers\usart
.c
</FilePath>
</File>
</Files>
</Group>
...
...
@@ -475,483 +449,347 @@
<File>
<FileName>
system_stm32f4xx.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/CMSIS/Device/ST/STM32F4xx/Source/Templates/
system_stm32f4xx.c
</FilePath>
<FilePath>
Libraries
\CMSIS\Device\ST\STM32F4xx\Source\Templates\
system_stm32f4xx.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_adc.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_adc.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_adc.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_adc_ex.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_adc_ex.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_adc_ex.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_can.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_can.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_can.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_cec.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_cec.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_cec.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_cortex.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_cortex.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_cortex.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_crc.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_crc.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_crc.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_cryp.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_cryp.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_cryp.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_cryp_ex.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_cryp_ex.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_cryp_ex.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_dac.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_dac.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_dac.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_dac_ex.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_dac_ex.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_dac_ex.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_dcmi.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_dcmi.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_dcmi.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_dcmi_ex.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_dcmi_ex.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_dcmi_ex.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_dfsdm.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_dfsdm.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_dfsdm.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_dma.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_dma.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_dma.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_dma2d.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_dma2d.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_dma2d.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_dma_ex.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_dma_ex.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_dma_ex.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_dsi.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_dsi.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_dsi.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_eth.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_eth.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_eth.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_flash.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_flash.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_flash.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_flash_ex.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_flash_ex.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_flash_ex.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_flash_ramfunc.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_flash_ramfunc.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_flash_ramfunc.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_fmpi2c.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_fmpi2c.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_fmpi2c.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_fmpi2c_ex.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_fmpi2c_ex.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_fmpi2c_ex.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_gpio.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_gpio.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_gpio.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_hash.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_hash.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_hash.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_hash_ex.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_hash_ex.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_hash_ex.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_hcd.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_hcd.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_hcd.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_i2c.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_i2c.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_i2c.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_i2c_ex.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_i2c_ex.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_i2c_ex.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_i2s.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_i2s.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_i2s.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_i2s_ex.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_i2s_ex.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_i2s_ex.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_irda.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_irda.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_irda.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_iwdg.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_iwdg.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_iwdg.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_lptim.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_lptim.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_lptim.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_ltdc.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_ltdc.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_ltdc.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_ltdc_ex.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_ltdc_ex.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_ltdc_ex.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_nand.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_nand.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_nand.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_nor.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_nor.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_nor.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_pccard.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_pccard.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_pccard.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_pcd.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_pcd.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_pcd.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_pcd_ex.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_pcd_ex.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_pcd_ex.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_pwr.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_pwr.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_pwr.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_pwr_ex.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_pwr_ex.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_pwr_ex.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_qspi.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_qspi.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_qspi.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_rcc.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_rcc.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_rcc.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_rcc_ex.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_rcc_ex.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_rcc_ex.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_rng.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_rng.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_rng.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_rtc.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_rtc.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_rtc.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_rtc_ex.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_rtc_ex.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_rtc_ex.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_sai.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_sai.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_sai.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_sai_ex.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_sai_ex.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_sai_ex.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_sd.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_sd.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_sd.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_sdram.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_sdram.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_sdram.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_smartcard.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_smartcard.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_smartcard.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_spdifrx.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_spdifrx.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_spdifrx.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_spi.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_spi.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_spi.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_sram.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_sram.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_sram.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_tim.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_tim.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_tim.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_tim_ex.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_tim_ex.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_tim_ex.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_uart.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_uart.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_uart.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_usart.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_usart.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_usart.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_hal_wwdg.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_hal_wwdg.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_hal_wwdg.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_ll_fmc.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_ll_fmc.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_ll_fmc.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_ll_fsmc.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_ll_fsmc.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_ll_fsmc.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_ll_sdmmc.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_ll_sdmmc.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_ll_sdmmc.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stm32f4xx_ll_usb.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
Libraries
/STM32F4xx_HAL_Driver/Src/
stm32f4xx_ll_usb.c
</FilePath>
<FilePath>
Libraries
\STM32F4xx_HAL_Driver\Src\
stm32f4xx_ll_usb.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
startup_stm32f429xx.s
</FileName>
<FileType>
2
</FileType>
<FilePath>
Libraries
/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/
startup_stm32f429xx.s
</FilePath>
<FilePath>
Libraries
\CMSIS\Device\ST\STM32F4xx\Source\Templates\arm\
startup_stm32f429xx.s
</FilePath>
</File>
</Files>
</Group>
...
...
@@ -961,105 +799,72 @@
<File>
<FileName>
clock.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../src/
clock.c
</FilePath>
<FilePath>
..
\..\src\
clock.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
components.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../src/
components.c
</FilePath>
<FilePath>
..
\..\src\
components.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
device.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../src/
device.c
</FilePath>
<FilePath>
..
\..\src\
device.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
idle.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../src/
idle.c
</FilePath>
<FilePath>
..
\..\src\
idle.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
ipc.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../src/
ipc.c
</FilePath>
<FilePath>
..
\..\src\
ipc.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
irq.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../src/
irq.c
</FilePath>
<FilePath>
..
\..\src\
irq.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
kservice.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../src/kservice.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
mem.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../src/mem.c
</FilePath>
<FilePath>
..\..\src\kservice.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
memheap.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../src/
memheap.c
</FilePath>
<FilePath>
..
\..\src\
memheap.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
mempool.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../src/
mempool.c
</FilePath>
<FilePath>
..
\..\src\
mempool.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
object.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../src/
object.c
</FilePath>
<FilePath>
..
\..\src\
object.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
scheduler.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../src/
scheduler.c
</FilePath>
<FilePath>
..
\..\src\
scheduler.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
signal.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../src/
signal.c
</FilePath>
<FilePath>
..
\..\src\
signal.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
thread.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../src/
thread.c
</FilePath>
<FilePath>
..
\..\src\
thread.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
timer.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../src/
timer.c
</FilePath>
<FilePath>
..
\..\src\
timer.c
</FilePath>
</File>
</Files>
</Group>
...
...
@@ -1069,553 +874,356 @@
<File>
<FileName>
cpuport.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../libcpu/arm/cortex-m4/
cpuport.c
</FilePath>
<FilePath>
..
\..\libcpu\arm\cortex-m4\
cpuport.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
context_rvds.S
</FileName>
<FileType>
2
</FileType>
<FilePath>
..
/../libcpu/arm/cortex-m4/
context_rvds.S
</FilePath>
<FilePath>
..
\..\libcpu\arm\cortex-m4\
context_rvds.S
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
backtrace.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../libcpu/arm/common/
backtrace.c
</FilePath>
<FilePath>
..
\..\libcpu\arm\common\
backtrace.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
div0.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../libcpu/arm/common/
div0.c
</FilePath>
<FilePath>
..
\..\libcpu\arm\common\
div0.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
showmem.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../libcpu/arm/common/
showmem.c
</FilePath>
<FilePath>
..
\..\libcpu\arm\common\
showmem.c
</FilePath>
</File>
</Files>
</Group>
<Group>
<GroupName>
DeviceDrivers
</GroupName>
<GroupName>
Filesystem
</GroupName>
<Files>
<File>
<FileName>
i2c_core
.c
</FileName>
<FileName>
dfs
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/drivers/i2c/i2c_core
.c
</FilePath>
<FilePath>
..
\..\components\dfs\src\dfs
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
i2c_dev
.c
</FileName>
<FileName>
dfs_file
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/drivers/i2c/i2c_dev
.c
</FilePath>
<FilePath>
..
\..\components\dfs\src\dfs_file
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
i2c-bit-op
s.c
</FileName>
<FileName>
dfs_f
s.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/drivers/i2c/i2c-bit-op
s.c
</FilePath>
<FilePath>
..
\..\components\dfs\src\dfs_f
s.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
serial
.c
</FileName>
<FileName>
dfs_posix
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/drivers/serial/serial
.c
</FilePath>
<FilePath>
..
\..\components\dfs\src\dfs_posix
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
rtc
.c
</FileName>
<FileName>
poll
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/drivers/rtc/rtc
.c
</FilePath>
<FilePath>
..
\..\components\dfs\src\poll
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
s
pi_core
.c
</FileName>
<FileName>
s
elect
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/drivers/spi/spi_core
.c
</FilePath>
<FilePath>
..
\..\components\dfs\src\select
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
spi_dev.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/drivers/spi/spi_dev.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
spi_flash_w25qxx.c
</FileName>
<FileName>
devfs.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/drivers/spi/spi_flash_w25qxx
.c
</FilePath>
<FilePath>
..
\..\components\dfs\filesystems\devfs\devfs
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
completion
.c
</FileName>
<FileName>
dfs_elm
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/drivers/src/completion
.c
</FilePath>
<FilePath>
..
\..\components\dfs\filesystems\elmfat\dfs_elm
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
dataqueue
.c
</FileName>
<FileName>
ff
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/drivers/src/dataqueue
.c
</FilePath>
<FilePath>
..
\..\components\dfs\filesystems\elmfat\ff
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
pipe
.c
</FileName>
<FileName>
dfs_net
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/drivers/src/pipe
.c
</FilePath>
<FilePath>
..
\..\components\dfs\filesystems\net\dfs_net
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
ringbuffer
.c
</FileName>
<FileName>
net_netdb
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/drivers/src/ringbuffer
.c
</FilePath>
<FilePath>
..
\..\components\dfs\filesystems\net\net_netdb
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
waitqueue
.c
</FileName>
<FileName>
net_sockets
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/drivers/src/waitqueue.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
workqueue.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/drivers/src/workqueue.c
</FilePath>
<FilePath>
..\..\components\dfs\filesystems\net\net_sockets.c
</FilePath>
</File>
</Files>
</Group>
<Group>
<GroupName>
DeviceDrivers
</GroupName>
<GroupOption>
<CommonProperty>
<UseCPPCompiler>
0
</UseCPPCompiler>
<RVCTCodeConst>
0
</RVCTCodeConst>
<RVCTZI>
0
</RVCTZI>
<RVCTOtherData>
0
</RVCTOtherData>
<ModuleSelection>
0
</ModuleSelection>
<IncludeInBuild>
1
</IncludeInBuild>
<AlwaysBuild>
0
</AlwaysBuild>
<GenerateAssemblyFile>
0
</GenerateAssemblyFile>
<AssembleAssemblyFile>
0
</AssembleAssemblyFile>
<PublicsOnly>
0
</PublicsOnly>
<StopOnExitCode>
3
</StopOnExitCode>
<CustomArgument></CustomArgument>
<IncludeLibraryModules></IncludeLibraryModules>
<ComprImg>
0
</ComprImg>
</CommonProperty>
<GroupArmAds>
<Cads>
<interw>
2
</interw>
<Optim>
0
</Optim>
<oTime>
2
</oTime>
<SplitLS>
2
</SplitLS>
<OneElfS>
2
</OneElfS>
<Strict>
2
</Strict>
<EnumInt>
2
</EnumInt>
<PlainCh>
2
</PlainCh>
<Ropi>
2
</Ropi>
<Rwpi>
2
</Rwpi>
<wLevel>
0
</wLevel>
<uThumb>
2
</uThumb>
<uSurpInc>
2
</uSurpInc>
<uC99>
2
</uC99>
<uGnu>
2
</uGnu>
<useXO>
2
</useXO>
<v6Lang>
0
</v6Lang>
<v6LangP>
0
</v6LangP>
<vShortEn>
2
</vShortEn>
<vShortWch>
2
</vShortWch>
<v6Lto>
2
</v6Lto>
<v6WtE>
2
</v6WtE>
<v6Rtti>
2
</v6Rtti>
<VariousControls>
<MiscControls
/
>
<MiscControls
></MiscControls
>
<Define>
</Define>
<Undefine>
</Undefine>
<IncludePath>
</IncludePath>
<IncludePath></IncludePath>
</VariousControls>
</Cads>
<Aads>
<interw>
2
</interw>
<Ropi>
2
</Ropi>
<Rwpi>
2
</Rwpi>
<thumb>
2
</thumb>
<SplitLS>
2
</SplitLS>
<SwStkChk>
2
</SwStkChk>
<NoWarn>
2
</NoWarn>
<uSurpInc>
2
</uSurpInc>
<useXO>
2
</useXO>
<uClangAs>
2
</uClangAs>
<VariousControls>
<MiscControls></MiscControls>
<Define></Define>
<Undefine></Undefine>
<IncludePath></IncludePath>
</VariousControls>
</Aads>
</GroupArmAds>
</GroupOption>
</Group>
<Group>
<GroupName>
finsh
</GroupName>
<Files>
<File>
<FileName>
shell.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/finsh/shell.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
symbol.c
</FileName>
<FileName>
i2c_core.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/finsh/symbol
.c
</FilePath>
<FilePath>
..
\..\components\drivers\i2c\i2c_core
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
cmd
.c
</FileName>
<FileName>
i2c_dev
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/finsh/cmd
.c
</FilePath>
<FilePath>
..
\..\components\drivers\i2c\i2c_dev
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
msh
.c
</FileName>
<FileName>
i2c-bit-ops
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/finsh/msh
.c
</FilePath>
<FilePath>
..
\..\components\drivers\i2c\i2c-bit-ops
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
msh_cmd
.c
</FileName>
<FileName>
pin
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/finsh/msh_cmd
.c
</FilePath>
<FilePath>
..
\..\components\drivers\misc\pin
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
msh_file
.c
</FileName>
<FileName>
rtc
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/finsh/msh_file
.c
</FilePath>
<FilePath>
..
\..\components\drivers\rtc\rtc
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
finsh_compiler
.c
</FileName>
<FileName>
serial
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/finsh/finsh_compiler
.c
</FilePath>
<FilePath>
..
\..\components\drivers\serial\serial
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
finsh_error
.c
</FileName>
<FileName>
spi_core
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/finsh/finsh_error
.c
</FilePath>
<FilePath>
..
\..\components\drivers\spi\spi_core
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
finsh_heap
.c
</FileName>
<FileName>
spi_dev
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/finsh/finsh_heap
.c
</FilePath>
<FilePath>
..
\..\components\drivers\spi\spi_dev
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
finsh_init
.c
</FileName>
<FileName>
spi_flash_w25qxx
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/finsh/finsh_init
.c
</FilePath>
<FilePath>
..
\..\components\drivers\spi\spi_flash_w25qxx
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
finsh_node
.c
</FileName>
<FileName>
completion
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/finsh/finsh_node
.c
</FilePath>
<FilePath>
..
\..\components\drivers\src\completion
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
finsh_ops
.c
</FileName>
<FileName>
dataqueue
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/finsh/finsh_ops
.c
</FilePath>
<FilePath>
..
\..\components\drivers\src\dataqueue
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
finsh_parser
.c
</FileName>
<FileName>
pipe
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/finsh/finsh_parser
.c
</FilePath>
<FilePath>
..
\..\components\drivers\src\pipe
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
finsh_va
r.c
</FileName>
<FileName>
ringbuffe
r.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/finsh/finsh_va
r.c
</FilePath>
<FilePath>
..
\..\components\drivers\src\ringbuffe
r.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
finsh_vm
.c
</FileName>
<FileName>
waitqueue
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/finsh/finsh_vm
.c
</FilePath>
<FilePath>
..
\..\components\drivers\src\waitqueue
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
finsh_token
.c
</FileName>
<FileName>
workqueue
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/finsh/finsh_token
.c
</FilePath>
<FilePath>
..
\..\components\drivers\src\workqueue
.c
</FilePath>
</File>
</Files>
</Group>
<Group>
<GroupName>
GuiEngine
</GroupName>
<Files>
<File>
<FileName>
asc12font.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/gui/src/asc12font.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
asc16font.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/gui/src/asc16font.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
blit.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/gui/src/blit.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
box.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/gui/src/box.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
color.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/gui/src/color.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
container.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/gui/src/container.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
dc.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/gui/src/dc.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
dc_blend.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/gui/src/dc_blend.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
dc_buffer.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/gui/src/dc_buffer.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
dc_client.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/gui/src/dc_client.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
dc_hw.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/gui/src/dc_hw.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
dc_rotozoom.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/gui/src/dc_rotozoom.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
dc_trans.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/gui/src/dc_trans.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
filerw.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/gui/src/filerw.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
font.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/gui/src/font.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
font_bmp.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/gui/src/font_bmp.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
font_fnt.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/gui/src/font_fnt.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
font_freetype.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/gui/src/font_freetype.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
font_hz_bmp.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/gui/src/font_hz_bmp.c
</FilePath>
</File>
</Files>
<GroupName>
finsh
</GroupName>
<Files>
<File>
<FileName>
font_hz_file
.c
</FileName>
<FileName>
shell
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/gui/src/font_hz_file
.c
</FilePath>
<FilePath>
..
\..\components\finsh\shell
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
hz12font
.c
</FileName>
<FileName>
symbol
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/gui/src/hz12font
.c
</FilePath>
<FilePath>
..
\..\components\finsh\symbol
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
hz16font
.c
</FileName>
<FileName>
cmd
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/gui/src/hz16font
.c
</FilePath>
<FilePath>
..
\..\components\finsh\cmd
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
image
.c
</FileName>
<FileName>
msh
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/gui/src/image
.c
</FilePath>
<FilePath>
..
\..\components\finsh\msh
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
image_bmp.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/gui/src/image_bmp.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
image_container.c
</FileName>
<FileName>
msh_cmd.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/gui/src/image_container
.c
</FilePath>
<FilePath>
..
\..\components\finsh\msh_cmd
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
image_hdc
.c
</FileName>
<FileName>
msh_file
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/gui/src/image_hdc
.c
</FilePath>
<FilePath>
..
\..\components\finsh\msh_file
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
image_jpg
.c
</FileName>
<FileName>
finsh_compiler
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/gui/src/image_jpg
.c
</FilePath>
<FilePath>
..
\..\components\finsh\finsh_compiler
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
image_png
.c
</FileName>
<FileName>
finsh_error
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/gui/src/image_png
.c
</FilePath>
<FilePath>
..
\..\components\finsh\finsh_error
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
image_xpm
.c
</FileName>
<FileName>
finsh_heap
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/gui/src/image_xpm
.c
</FilePath>
<FilePath>
..
\..\components\finsh\finsh_heap
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
matrix
.c
</FileName>
<FileName>
finsh_init
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/gui/src/matrix
.c
</FilePath>
<FilePath>
..
\..\components\finsh\finsh_init
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
mous
e.c
</FileName>
<FileName>
finsh_nod
e.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/gui/src/mous
e.c
</FilePath>
<FilePath>
..
\..\components\finsh\finsh_nod
e.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
region
.c
</FileName>
<FileName>
finsh_ops
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/gui/src/region
.c
</FilePath>
<FilePath>
..
\..\components\finsh\finsh_ops
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
rtgui_app
.c
</FileName>
<FileName>
finsh_parser
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/gui/src/rtgui_app
.c
</FilePath>
<FilePath>
..
\..\components\finsh\finsh_parser
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
rtgui_drive
r.c
</FileName>
<FileName>
finsh_va
r.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/gui/src/rtgui_drive
r.c
</FilePath>
<FilePath>
..
\..\components\finsh\finsh_va
r.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
rtgui_object
.c
</FileName>
<FileName>
finsh_vm
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/gui/src/rtgui_object
.c
</FilePath>
<FilePath>
..
\..\components\finsh\finsh_vm
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
rtgui_system
.c
</FileName>
<FileName>
finsh_token
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/gui/src/rtgui_system
.c
</FilePath>
<FilePath>
..
\..\components\finsh\finsh_token
.c
</FilePath>
</File>
</Files>
</Group>
<Group>
<GroupName>
libc
</GroupName>
<Files>
<File>
<FileName>
server
.c
</FileName>
<FileName>
libc
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/gui/src/server
.c
</FilePath>
<FilePath>
..
\..\components\libc\compilers\armlibc\libc
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
title
.c
</FileName>
<FileName>
mem_std
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/gui/src/title
.c
</FilePath>
<FilePath>
..
\..\components\libc\compilers\armlibc\mem_std
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
topwin
.c
</FileName>
<FileName>
stdio
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/gui/src/topwin
.c
</FilePath>
<FilePath>
..
\..\components\libc\compilers\armlibc\stdio
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
widget
.c
</FileName>
<FileName>
stubs
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/gui/src/widget
.c
</FilePath>
<FilePath>
..
\..\components\libc\compilers\armlibc\stubs
.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
window
.c
</FileName>
<FileName>
time
.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/gui/src/window
.c
</FilePath>
<FilePath>
..
\..\components\libc\compilers\armlibc\time
.c
</FilePath>
</File>
</Files>
</Group>
...
...
@@ -1625,327 +1233,203 @@
<File>
<FileName>
sys_arch.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/arch/
sys_arch.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\arch\
sys_arch.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
api_lib.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/api/
api_lib.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\api\
api_lib.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
api_msg.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/api/
api_msg.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\api\
api_msg.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
err.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/api/
err.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\api\
err.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
netbuf.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/api/
netbuf.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\api\
netbuf.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
netdb.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/api/
netdb.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\api\
netdb.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
netifapi.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/api/
netifapi.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\api\
netifapi.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
sockets.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/api/
sockets.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\api\
sockets.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
tcpip.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/api/
tcpip.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\api\
tcpip.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
def.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/
def.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\
def.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
dns.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/
dns.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\
dns.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
inet_chksum.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/
inet_chksum.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\
inet_chksum.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
init.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/
init.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\
init.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
ip.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/
ip.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\
ip.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
memp.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/
memp.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\
memp.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
netif.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/
netif.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\
netif.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
pbuf.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/
pbuf.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\
pbuf.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
raw.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/
raw.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\
raw.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
stats.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/
stats.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\
stats.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
sys.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/
sys.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\
sys.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
tcp.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/
tcp.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\
tcp.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
tcp_in.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/
tcp_in.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\
tcp_in.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
tcp_out.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/
tcp_out.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\
tcp_out.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
timeouts.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/
timeouts.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\
timeouts.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
udp.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/
udp.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\
udp.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
ethernet.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/netif/
ethernet.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\netif\
ethernet.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
ethernetif.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/netif/
ethernetif.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\netif\
ethernetif.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
lowpan6.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/netif/
lowpan6.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\netif\
lowpan6.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
autoip.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/ipv4/
autoip.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\ipv4\
autoip.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
dhcp.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/ipv4/
dhcp.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\ipv4\
dhcp.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
etharp.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/ipv4/
etharp.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\ipv4\
etharp.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
icmp.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/ipv4/
icmp.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\ipv4\
icmp.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
igmp.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/ipv4/
igmp.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\ipv4\
igmp.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
ip4.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/ipv4/
ip4.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\ipv4\
ip4.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
ip4_addr.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/ipv4/
ip4_addr.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\ipv4\
ip4_addr.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
ip4_frag.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
..
/../components/net/lwip-2.0.2/src/core/ipv4/
ip4_frag.c
</FilePath>
<FilePath>
..
\..\components\net\lwip-2.0.2\src\core\ipv4\
ip4_frag.c
</FilePath>
</File>
</Files>
</Group>
<Group>
<GroupName>
Filesystem
</GroupName>
<Files>
<File>
<FileName>
dfs.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/dfs/src/dfs.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
dfs_file.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/dfs/src/dfs_file.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
dfs_fs.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/dfs/src/dfs_fs.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
dfs_posix.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/dfs/src/dfs_posix.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
devfs.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/dfs/filesystems/devfs/devfs.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
dfs_elm.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/dfs/filesystems/elmfat/dfs_elm.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
ff.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/dfs/filesystems/elmfat/ff.c
</FilePath>
</File>
</Files>
<Files>
<File>
<FileName>
ccsbcs.c
</FileName>
<FileType>
1
</FileType>
<FilePath>
../../components/dfs/filesystems/elmfat/option/ccsbcs.c
</FilePath>
</File>
</Files>
<GroupName>
::CMSIS
</GroupName>
</Group>
</Groups>
</Target>
</Targets>
<RTE>
<apis
/>
<apis/>
<components>
<component
Cclass=
"CMSIS"
Cgroup=
"CORE"
Cvendor=
"ARM"
Cversion=
"5.
0
.1"
condition=
"ARMv6_7_8-M Device"
>
<package
name=
"CMSIS"
schemaVersion=
"1.3"
url=
"http://www.keil.com/pack/"
vendor=
"ARM"
version=
"5.
0.1"
/>
<component
Cclass=
"CMSIS"
Cgroup=
"CORE"
Cvendor=
"ARM"
Cversion=
"5.
1
.1"
condition=
"ARMv6_7_8-M Device"
>
<package
name=
"CMSIS"
schemaVersion=
"1.3"
url=
"http://www.keil.com/pack/"
vendor=
"ARM"
version=
"5.
3.0"
/>
<targetInfos>
<targetInfo
name=
"rt-thread_stm32f4xx"
/>
<targetInfo
name=
"rt-thread_stm32f4xx"
/>
</targetInfos>
</component>
</components>
<files
/>
<files/>
</RTE>
</Project>
bsp/stm32f429-armfly/rtconfig.h
浏览文件 @
8430b832
...
...
@@ -10,9 +10,7 @@
#define RT_NAME_MAX 8
#define RT_ALIGN_SIZE 4
/* RT_THREAD_PRIORITY_8 is not set */
#define RT_THREAD_PRIORITY_32
/* RT_THREAD_PRIORITY_256 is not set */
#define RT_THREAD_PRIORITY_MAX 32
#define RT_TICK_PER_SECOND 1000
#define RT_DEBUG
...
...
@@ -21,7 +19,6 @@
#define RT_DEBUG_THREAD 0
#define RT_USING_HOOK
#define IDLE_THREAD_STACK_SIZE 1024
/* RT_USING_TIMER_SOFT is not set */
/* Inter-Thread communication */
...
...
@@ -30,26 +27,20 @@
#define RT_USING_EVENT
#define RT_USING_MAILBOX
#define RT_USING_MESSAGEQUEUE
/* RT_USING_SIGNALS is not set */
/* Memory Management */
#define RT_USING_MEMPOOL
#define RT_USING_MEMHEAP
/* RT_USING_NOHEAP is not set */
/* RT_USING_SMALL_MEM is not set */
/* RT_USING_SLAB is not set */
#define RT_USING_MEMHEAP_AS_HEAP
#define RT_USING_HEAP
/* Kernel Device Object */
#define RT_USING_DEVICE
/* RT_USING_INTERRUPT_INFO is not set */
#define RT_USING_CONSOLE
#define RT_CONSOLEBUF_SIZE 128
#define RT_CONSOLE_DEVICE_NAME "uart1"
/* RT_USING_MODULE is not set */
#define ARCH_ARM
#define ARCH_ARM_CORTEX_M
#define ARCH_ARM_CORTEX_M4
...
...
@@ -57,11 +48,9 @@
/* RT-Thread Components */
#define RT_USING_COMPONENTS_INIT
/* RT_USING_USER_MAIN is not set */
/* C++ features */
/* RT_USING_CPLUSPLUS is not set */
/* Command shell */
...
...
@@ -74,10 +63,9 @@
#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 */
#define FINSH_ARG_MAX 10
/* Device virtual file system */
...
...
@@ -93,77 +81,41 @@
#define RT_DFS_ELM_CODE_PAGE 437
#define RT_DFS_ELM_WORD_ACCESS
#define RT_DFS_ELM_USE_LFN_0
/* RT_DFS_ELM_USE_LFN_1 is not set */
/* RT_DFS_ELM_USE_LFN_2 is not set */
/* RT_DFS_ELM_USE_LFN_3 is not set */
#define RT_DFS_ELM_USE_LFN 0
#define RT_DFS_ELM_MAX_LFN 255
#define RT_DFS_ELM_DRIVES 2
#define RT_DFS_ELM_MAX_SECTOR_SIZE 4096
/* RT_DFS_ELM_USE_ERASE is not set */
#define RT_DFS_ELM_REENTRANT
#define RT_USING_DFS_DEVFS
#define RT_USING_DFS_NET
#define HAVE_SYS_SELECT_H
/* HAVE_SYS_SOCKET_H is not set */
/* RT_USING_DFS_ROMFS is not set */
/* RT_USING_DFS_RAMFS is not set */
/* RT_USING_DFS_UFFS is not set */
/* RT_USING_DFS_JFFS2 is not set */
/* RT_USING_DFS_NFS is not set */
/* Device Drivers */
#define RT_USING_DEVICE_IPC
#define RT_USING_SERIAL
/* RT_USING_CAN is not set */
/* RT_USING_HWTIMER is not set */
/* RT_USING_CPUTIME is not set */
#define RT_USING_I2C
#define RT_USING_I2C_BITOPS
#define RT_USING_PIN
/* RT_USING_MTD_NOR is not set */
/* RT_USING_MTD_NAND is not set */
#define RT_USING_RTC
/* RT_USING_SOFT_RTC is not set */
/* RTC_SYNC_USING_NTP is not set */
/* RT_USING_SDIO is not set */
#define RT_USING_SPI
/* RT_USING_SPI_MSD is not set */
/* RT_USING_SFUD is not set */
#define RT_USING_W25QXX
/* RT_USING_GD is not set */
/* RT_USING_ENC28J60 is not set */
/* RT_USING_SPI_WIFI is not set */
/* RT_USING_WDT is not set */
/* RT_USING_WIFI is not set */
/* Using USB */
/* RT_USING_USB_HOST is not set */
/* RT_USING_USB_DEVICE is not set */
/* POSIX layer and C standard library */
#define RT_USING_LIBC
/* RT_USING_PTHREADS is not set */
#define RT_USING_POSIX
/* RT_USING_POSIX_MMAP is not set */
/* RT_USING_POSIX_TERMIOS is not set */
/* RT_USING_POSIX_AIO is not set */
/* HAVE_SYS_SIGNALS is not set */
/* Network stack */
/* light weight TCP/IP stack */
#define RT_USING_LWIP
/* RT_USING_LWIP141 is not set */
#define RT_USING_LWIP202
/* RT_USING_LWIP_IPV6 is not set */
#define RT_LWIP_IGMP
#define RT_LWIP_ICMP
/* RT_LWIP_SNMP is not set */
#define RT_LWIP_DNS
#define RT_LWIP_DHCP
#define IP_SOF_BROADCAST 1
...
...
@@ -176,8 +128,7 @@
#define RT_LWIP_MSKADDR "255.255.255.0"
#define RT_LWIP_UDP
#define RT_LWIP_TCP
/* RT_LWIP_RAW is not set */
/* RT_LWIP_PPP is not set */
#define RT_LWIP_RAW
#define RT_MEMP_NUM_NETCONN 8
#define RT_LWIP_PBUF_NUM 16
#define RT_LWIP_RAW_PCB_NUM 4
...
...
@@ -190,116 +141,69 @@
#define RT_LWIP_TCPTHREAD_MBOX_SIZE 4
#define RT_LWIP_TCPTHREAD_STACKSIZE 1024
#define RT_LWIP_ETHTHREAD_PRIORITY 15
#define RT_LWIP_ETHTHREAD_STACKSIZE
512
#define RT_LWIP_ETHTHREAD_STACKSIZE
1024
#define RT_LWIP_ETHTHREAD_MBOX_SIZE 4
/* RT_LWIP_REASSEMBLY_FRAG is not set */
#define LWIP_NETIF_STATUS_CALLBACK 1
#define SO_REUSE 1
#define LWIP_SO_RCVTIMEO 1
#define LWIP_SO_SNDTIMEO 1
#define LWIP_SO_RCVBUF 1
/* RT_LWIP_NETIF_LOOPBACK is not set */
#define LWIP_NETIF_LOOPBACK 0
/* Modbus master and slave stack */
/* RT_USING_MODBUS is not set */
/* LWIP_USING_DHCPD is not set */
/* VBUS(Virtual Software BUS) */
/* RT_USING_VBUS is not set */
/* Utilities */
/* RT_USING_LOGTRACE is not set */
/* RT_USING_RYM is not set */
/* ARM CMSIS */
/* RT_USING_CMSIS_OS is not set */
/* RT_USING_RTT_CMSIS is not set */
/* RT-Thread online packages */
/* system packages */
/* RT-Thread GUI Engine */
/* PKG_USING_GUIENGINE is not set */
/* PKG_USING_PERSIMMON is not set */
/* PKG_USING_LWEXT4 is not set */
/* PKG_USING_PARTITION is not set */
/* PKG_USING_SQLITE is not set */
/* PKG_USING_RTI 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_LJSON is not set */
/* PKG_USING_EZXML is not set */
/* PKG_USING_NANOPB is not set */
/* PKG_USING_GAGENT_CLOUD is not set */
/* Wi-Fi */
/* Marvell WiFi */
/* PKG_USING_WLANMARVELL is not set */
/* Wiced WiFi */
/* PKG_USING_WLAN_WICED is not set */
/* PKG_USING_COAP is not set */
/* PKG_USING_NOPOLL is not set */
/* PKG_USING_NETUTILS is not set */
/* security packages */
/* PKG_USING_MBEDTLS is not set */
/* PKG_USING_libsodium is not set */
/* PKG_USING_TINYCRYPT is not set */
/* language packages */
/* PKG_USING_JERRYSCRIPT is not set */
/* PKG_USING_MICROPYTHON is not set */
/* multimedia packages */
/* PKG_USING_OPENMV is not set */
/* tools packages */
/* PKG_USING_CMBACKTRACE is not set */
/* PKG_USING_EASYLOGGER is not set */
/* PKG_USING_SYSTEMVIEW is not set */
/* PKG_USING_IPERF is not set */
/* system packages */
/* peripheral libraries and drivers */
/* miscellaneous packages */
/* PKG_USING_FASTLZ is not set */
/*
PKG_USING_MINILZO is not set
*/
/* PKG_USING_QUICKLZ is not set */
/*
sample package
*/
/* example package: hello */
/* PKG_USING_HELLO is not set */
/* PKG_USING_MULTIBUTTON is not set */
#define RT_USING_EXT_SDRAM
#define RT_USING_UART1
/* RT_USING_UART2 is not set */
/* RT_USING_UART3 is not set */
#define RT_USING_SPI1
/* RT_USING_SPI2 is not set */
/* RT_USING_SPI3 is not set */
/* RT_USING_SPI4 is not set */
/* RT_USING_SPI5 is not set */
/* RT_USING_SPI6 is not set */
#define RT_RTC_NAME "rtc"
#endif
bsp/stm32f429-armfly/template.uvprojx
浏览文件 @
8430b832
...
...
@@ -10,28 +10,30 @@
<TargetName>
rt-thread_stm32f4xx
</TargetName>
<ToolsetNumber>
0x4
</ToolsetNumber>
<ToolsetName>
ARM-ADS
</ToolsetName>
<pCCUsed>
5060750::V5.06 update 6 (build 750)::ARMCC
</pCCUsed>
<uAC6>
0
</uAC6>
<TargetOption>
<TargetCommonOption>
<Device>
STM32F429
ZG
</Device>
<Device>
STM32F429
BITx
</Device>
<Vendor>
STMicroelectronics
</Vendor>
<PackID>
Keil.STM32F4xx_DFP.2.11.0
</PackID>
<PackURL>
http://www.keil.com/pack
</PackURL>
<Cpu>
IRAM(0x20000000,0x30000) IRAM2(0x10000000,0x10000) IROM(0x08000000,0x
1
00000) CPUTYPE("Cortex-M4") FPU2 CLOCK(12000000) ELITTLE
</Cpu>
<Cpu>
IRAM(0x20000000,0x30000) IRAM2(0x10000000,0x10000) IROM(0x08000000,0x
2
00000) CPUTYPE("Cortex-M4") FPU2 CLOCK(12000000) ELITTLE
</Cpu>
<FlashUtilSpec></FlashUtilSpec>
<StartupFile></StartupFile>
<FlashDriverDll>
UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx_
1024 -FS08000000 -FL0100000 -FP0($$Device:STM32F429ZG$CMSIS\Flash\STM32F4xx_1024
.FLM))
</FlashDriverDll>
<DeviceId>
7029
</DeviceId>
<RegisterFile>
$$Device:STM32F429
ZG
$Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h
</RegisterFile>
<FlashDriverDll>
UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx_
2048 -FS08000000 -FL0200000 -FP0($$Device:STM32F429BITx$CMSIS\Flash\STM32F4xx_2048
.FLM))
</FlashDriverDll>
<DeviceId>
0
</DeviceId>
<RegisterFile>
$$Device:STM32F429
BITx
$Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h
</RegisterFile>
<MemoryEnv></MemoryEnv>
<Cmp></Cmp>
<Asm></Asm>
<Linker></Linker>
<OHString></OHString>
<InfinionOptionDll></InfinionOptionDll>
<SLE66CMisc>
-DSTM32F429_439xx
</SLE66CMisc>
<SLE66CMisc></SLE66CMisc>
<SLE66AMisc></SLE66AMisc>
<SLE66LinkerMisc></SLE66LinkerMisc>
<SFDFile>
$$Device:STM32F429
ZG
$CMSIS\SVD\STM32F429x.svd
</SFDFile>
<SFDFile>
$$Device:STM32F429
BITx
$CMSIS\SVD\STM32F429x.svd
</SFDFile>
<bCustSvd>
0
</bCustSvd>
<UseEnv>
0
</UseEnv>
<BinPath></BinPath>
...
...
@@ -52,7 +54,7 @@
<CreateLib>
0
</CreateLib>
<CreateHexFile>
0
</CreateHexFile>
<DebugInformation>
1
</DebugInformation>
<BrowseInformation>
1
</BrowseInformation>
<BrowseInformation>
0
</BrowseInformation>
<ListingPath>
.\build\
</ListingPath>
<HexFormatSelection>
1
</HexFormatSelection>
<Merge32K>
0
</Merge32K>
...
...
@@ -108,11 +110,11 @@
</CommonProperty>
<DllOption>
<SimDllName>
SARMCM3.DLL
</SimDllName>
<SimDllArguments>
-MPU -REMAP
</SimDllArguments>
<SimDllArguments>
-REMAP -MPU
</SimDllArguments>
<SimDlgDll>
DCM.DLL
</SimDlgDll>
<SimDlgDllArguments>
-pCM4
</SimDlgDllArguments>
<TargetDllName>
SARMCM3.DLL
</TargetDllName>
<TargetDllArguments>
-MPU
</TargetDllArguments>
<TargetDllArguments>
-MPU
</TargetDllArguments>
<TargetDlgDll>
TCM.DLL
</TargetDlgDll>
<TargetDlgDllArguments>
-pCM4
</TargetDlgDllArguments>
</DllOption>
...
...
@@ -247,7 +249,7 @@
<IROM>
<Type>
1
</Type>
<StartAddress>
0x8000000
</StartAddress>
<Size>
0x
1
00000
</Size>
<Size>
0x
2
00000
</Size>
</IROM>
<XRAM>
<Type>
0
</Type>
...
...
@@ -272,7 +274,7 @@
<OCR_RVCT4>
<Type>
1
</Type>
<StartAddress>
0x8000000
</StartAddress>
<Size>
0x
1
00000
</Size>
<Size>
0x
2
00000
</Size>
</OCR_RVCT4>
<OCR_RVCT5>
<Type>
1
</Type>
...
...
@@ -322,6 +324,7 @@
<uThumb>
0
</uThumb>
<uSurpInc>
0
</uSurpInc>
<uC99>
0
</uC99>
<uGnu>
0
</uGnu>
<useXO>
0
</useXO>
<v6Lang>
1
</v6Lang>
<v6LangP>
1
</v6LangP>
...
...
@@ -385,8 +388,8 @@
<RTE>
<apis/>
<components>
<component
Cclass=
"CMSIS"
Cgroup=
"CORE"
Cvendor=
"ARM"
Cversion=
"5.
0
.1"
condition=
"ARMv6_7_8-M Device"
>
<package
name=
"CMSIS"
schemaVersion=
"1.3"
url=
"http://www.keil.com/pack/"
vendor=
"ARM"
version=
"5.
0.1
"
/>
<component
Cclass=
"CMSIS"
Cgroup=
"CORE"
Cvendor=
"ARM"
Cversion=
"5.
1
.1"
condition=
"ARMv6_7_8-M Device"
>
<package
name=
"CMSIS"
schemaVersion=
"1.3"
url=
"http://www.keil.com/pack/"
vendor=
"ARM"
version=
"5.
3.0
"
/>
<targetInfos>
<targetInfo
name=
"rt-thread_stm32f4xx"
/>
</targetInfos>
...
...
libcpu/arm/cortex-m3/context_gcc.S
浏览文件 @
8430b832
...
...
@@ -188,7 +188,7 @@ _get_sp_done:
STMFD
r0
!,
{
r4
-
r11
}
/*
push
r4
-
r11
register
*/
STMFD
r0
!,
{
lr
}
/*
push
exec_return
register
*/
TST
lr
,
#
0x04
/*
if
(!
EXC_RETURN
[
2
])
TST
lr
,
#
0x04
/*
if
(!
EXC_RETURN
[
2
])
*/
BEQ
_update_msp
MSR
psp
,
r0
/*
update
stack
pointer
to
PSP
.
*/
B
_update_done
...
...
tools/vsc.py
浏览文件 @
8430b832
...
...
@@ -46,13 +46,21 @@ def GenerateCFiles(env):
config_obj
=
{}
config_obj
[
'name'
]
=
'Win32'
config_obj
[
'includePath'
]
=
info
[
'CPPPATH'
]
config_obj
[
'defines'
]
=
info
[
'CPPDEFINES'
]
config_obj
[
'intelliSenseMode'
]
=
'clang-x64'
config_obj
[
'compilerPath'
]
=
cc
config_obj
[
'cStandard'
]
=
"c99"
config_obj
[
'cppStandard'
]
=
"c++11"
# format "a/b," to a/b. remove first quotation mark("),and remove end (",)
includePath
=
[]
for
i
in
info
[
'CPPPATH'
]:
if
i
[
0
]
==
'
\"
'
and
i
[
len
(
i
)
-
2
:
len
(
i
)]
==
'
\"
,'
:
includePath
.
append
(
i
[
1
:
len
(
i
)
-
2
])
else
:
includePath
.
append
(
i
)
config_obj
[
'includePath'
]
=
includePath
json_obj
=
{}
json_obj
[
'configurations'
]
=
[
config_obj
]
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录