Merge pull request #1274 from TanekLiang/imxrt-update

i.mx rt update
This commit is contained in:
Bernard Xiong 2018-03-13 19:07:32 +08:00 committed by GitHub
commit ca0093fcec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 2744 additions and 1907 deletions

View File

@ -148,6 +148,7 @@ CONFIG_RT_USING_SDIO=y
CONFIG_RT_USING_LIBC=y
# CONFIG_RT_USING_PTHREADS is not set
# CONFIG_RT_USING_POSIX is not set
# CONFIG_HAVE_SYS_SIGNALS is not set
#
# Network stack
@ -236,14 +237,6 @@ CONFIG_LWIP_NETIF_LOOPBACK=0
# RT-Thread GUI Engine
#
# CONFIG_PKG_USING_GUIENGINE is not set
# CONFIG_GUIENGINE_IMAGE_JPEG_NONE is not set
# CONFIG_GUIENGINE_IMAGE_JPEG is not set
# CONFIG_GUIENGINE_IMAGE_TJPGD is not set
# CONFIG_GUIENGINE_IMAGE_PNG_NONE is not set
# CONFIG_GUIENGINE_IMAGE_PNG is not set
# CONFIG_GUIENGINE_IMAGE_LODEPNG is not set
# CONFIG_PKG_USING_GUIENGINE_V200 is not set
# CONFIG_PKG_USING_GUIENGINE_LATEST_VERSION is not set
# CONFIG_PKG_USING_PERSIMMON is not set
# CONFIG_PKG_USING_LWEXT4 is not set
# CONFIG_PKG_USING_PARTITION is not set
@ -278,6 +271,7 @@ CONFIG_LWIP_NETIF_LOOPBACK=0
# CONFIG_PKG_USING_WLAN_WICED is not set
# CONFIG_PKG_USING_COAP is not set
# CONFIG_PKG_USING_NOPOLL is not set
# CONFIG_PKG_USING_NETUTILS is not set
#
# security packages

View File

@ -218,14 +218,14 @@ SECTIONS
*(NonCacheable.init)
. = ALIGN(4);
__noncachedata_init_end__ = .; /* create a global symbol at initialized ncache data end */
} > m_dtcm
} > m_nocache
. = __noncachedata_init_end__;
.ncache :
{
*(NonCacheable)
. = ALIGN(4);
__noncachedata_end__ = .; /* define a global symbol at ncache data end */
} > m_dtcm
} > m_nocache
__DATA_END = __NDATA_ROM + (__noncachedata_init_end__ - __noncachedata_start__);
text_end = ORIGIN(m_text) + LENGTH(m_text);

View File

@ -78,7 +78,7 @@ void mem_test(uint32_t address, uint32_t size )
for(i=0; i<size/sizeof(uint32_t); i++)
{
*p_uint32_t = (uint32_t)p_uint32_t;
*p_uint32_t++;
p_uint32_t++;
}
p_uint32_t = (uint32_t *)address;

View File

@ -1,147 +0,0 @@
#include "rtthread.h"
#include <stdint.h>
#include "string.h"
#define __is_print(ch) ((unsigned int)((ch) - ' ') < 127u - ' ')
static void dump_hex(const rt_uint8_t *ptr, rt_size_t buflen)
{
unsigned char *buf = (unsigned char*)ptr;
int i, j;
for (i=0; i<buflen; i+=16)
{
rt_kprintf("%08X: ", i);
for (j=0; j<16; j++)
if (i+j < buflen)
rt_kprintf("%02X ", buf[i+j]);
else
rt_kprintf(" ");
rt_kprintf(" ");
for (j=0; j<16; j++)
if (i+j < buflen)
rt_kprintf("%c", __is_print(buf[i+j]) ? buf[i+j] : '.');
rt_kprintf("\n");
}
}
static void read_sd__(uint32_t addr, int length, int count)
{
rt_device_t device = RT_NULL;
rt_err_t result;
struct rt_device_blk_geometry geometry;
rt_uint8_t * read_buffer = RT_NULL;
device = rt_device_find("sd0");
rt_device_init(device);
rt_device_open(device,RT_DEVICE_FLAG_RDWR);
rt_memset(&geometry, 0, sizeof(geometry));
result = rt_device_control(device,
RT_DEVICE_CTRL_BLK_GETGEOME,
&geometry);
rt_kprintf("device info:\r\n");
rt_kprintf("sector size : %d byte\r\n", geometry.bytes_per_sector);
rt_kprintf("sector count : %d \r\n", geometry.sector_count);
rt_kprintf("block size : %d byte\r\n", geometry.block_size);
rt_kprintf("\r\n");
read_buffer = rt_malloc(geometry.bytes_per_sector*length);
if( read_buffer == RT_NULL )
{
rt_kprintf("no memory for read_buffer!\r\n");
goto __return;
}
memset(read_buffer,0x00,geometry.bytes_per_sector*length);
// for(i = 0;i < count; i++)
{
result = rt_device_read(device,addr,read_buffer, length);
dump_hex(read_buffer,geometry.bytes_per_sector * length);
if(result != length)
{
rt_kprintf("read device :%s ", device->parent.name);
rt_kprintf("the first sector failed.\r\n");
goto __return;
}
rt_kprintf("\n");
}
__return:
if( read_buffer != RT_NULL )
{
rt_free(read_buffer);
}
}
static void write_sd__(uint32_t addr, int length, unsigned char data)
{
int i;
rt_device_t device = RT_NULL;
rt_err_t result;
struct rt_device_blk_geometry geometry;
rt_uint8_t * write_buffer = RT_NULL;
rt_uint8_t * data_point = RT_NULL;;
device = rt_device_find("sd0");
rt_device_init(device);
rt_device_open(device,RT_DEVICE_FLAG_RDWR);
rt_memset(&geometry, 0, sizeof(geometry));
result = rt_device_control(device,
RT_DEVICE_CTRL_BLK_GETGEOME,
&geometry);
rt_kprintf("device info:\r\n");
rt_kprintf("sector size : %d byte\r\n", geometry.bytes_per_sector);
rt_kprintf("sector count : %d \r\n", geometry.sector_count);
rt_kprintf("block size : %d byte\r\n", geometry.block_size);
rt_kprintf("\r\n");
write_buffer = rt_malloc(geometry.bytes_per_sector);
if( write_buffer == RT_NULL )
{
rt_kprintf("no memory for write_buffer!\r\n");
goto __return;
}
data_point = write_buffer;
for(i=data; i<geometry.bytes_per_sector; i++)
{
*data_point++ = (rt_uint8_t)i;
}
for(i = addr;i < (length + addr); i++)
{
rt_device_write(device, addr, write_buffer,1);
}
__return:
if( write_buffer != RT_NULL )
{
rt_free(write_buffer);
}
}
int sdio_read(uint32_t addr, int length, int count)
{
read_sd__(addr, length, count);
return 0;
}
int sdio_write(uint32_t addr, int length, unsigned char data)
{
write_sd__(addr, length, data);
return 0;
}
#ifdef RT_USING_FINSH
#include <finsh.h>
FINSH_FUNCTION_EXPORT_ALIAS(sdio_read, sdior, sdio read test);
FINSH_FUNCTION_EXPORT_ALIAS(sdio_write, sdiow, sdio write test);
#endif

View File

@ -572,9 +572,10 @@ static void phy_monitor_thread_entry(void *parameter)
if (link) // link up
{
PHY_GetLinkSpeedDuplex(imxrt_eth_device.enet_base, PHY_ADDRESS, &speed, &duplex);
PHY_GetLinkSpeedDuplex(imxrt_eth_device.enet_base,
PHY_ADDRESS, &speed, &duplex);
if (kENET_MiiSpeed10M == speed)
if (kPHY_Speed10M == speed)
{
dbg_log(DBG_LOG, "10M\n");
}
@ -583,7 +584,7 @@ static void phy_monitor_thread_entry(void *parameter)
dbg_log(DBG_LOG, "100M\n");
}
if (kENET_MiiHalfDuplex == duplex)
if (kPHY_HalfDuplex == duplex)
{
dbg_log(DBG_LOG, "half dumplex\n");
}
@ -592,7 +593,8 @@ static void phy_monitor_thread_entry(void *parameter)
dbg_log(DBG_LOG, "full dumplex\n");
}
if ((imxrt_eth_device.speed != speed) || (imxrt_eth_device.duplex != duplex))
if ((imxrt_eth_device.speed != (enet_mii_speed_t)speed)
|| (imxrt_eth_device.duplex != (enet_mii_duplex_t)duplex))
{
imxrt_eth_device.speed = (enet_mii_speed_t)speed;
imxrt_eth_device.duplex = (enet_mii_duplex_t)duplex;

View File

@ -114,7 +114,7 @@ void UART7_IRQHandler(void)
#if defined(RT_USING_UART8)
struct rt_serial_device serial8;
void UART7_IRQHandler(void)
void UART8_IRQHandler(void)
{
uart_isr(&serial8);
}

View File

@ -220,7 +220,6 @@
<state>SKIP_SYSCLK_INIT</state>
<state>EVK_MCIMXRM</state>
<state>FSL_SDK_ENABLE_DRIVER_CACHE_CONTROL=1</state>
<state>FT2_BUILD_LIBRARY</state>
<state>RT_USING_DLIBC</state>
<state>_DLIB_FILE_DESCRIPTOR</state>
</option>
@ -354,38 +353,20 @@
<state>$PROJ_DIR$\..\..\libcpu\arm\common</state>
<state>$PROJ_DIR$\..\..\components\drivers\include</state>
<state>$PROJ_DIR$\Libraries\drivers</state>
<state>$PROJ_DIR$\..\..\components\dfs\filesystems\devfs</state>
<state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src</state>
<state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\include</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\include\freetype</state>
<state>$PROJ_DIR$\..\..\components\gui\include</state>
<state>$PROJ_DIR$\drivers</state>
<state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src</state>
<state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\include\posix</state>
<state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\include\ipv4</state>
<state>$PROJ_DIR$\..\..\components\gui\include\rtgui</state>
<state>$PROJ_DIR$\.</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\smooth</state>
<state>$PROJ_DIR$\..\..\libcpu\arm\cortex-m7</state>
<state>$PROJ_DIR$\..\..\components\dfs\include</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\lodepng</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\include</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\include\freetype\internal</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\include\freetype\internal\services</state>
<state>$PROJ_DIR$\..\..\components\gui\src</state>
<state>$PROJ_DIR$\..\..\components\dfs\filesystems\devfs</state>
<state>$PROJ_DIR$\Libraries\CMSIS\Include</state>
<state>$PROJ_DIR$\Libraries\utilities</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\sfnt</state>
<state>$PROJ_DIR$\applications</state>
<state>$PROJ_DIR$\..\..\components\finsh</state>
<state>$PROJ_DIR$\..\..\components\dfs\filesystems\elmfat</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\truetype</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\psnames</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\autofit</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\cache</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\include\freetype\config</state>
<state>$PROJ_DIR$\..\..\components\gui\include\rtgui\widgets</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\base</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\builds\rt-thread</state>
<state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\include\posix</state>
<state>$PROJ_DIR$\drivers</state>
<state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\arch\include</state>
</option>
<option>
@ -1281,7 +1262,6 @@
<state>SKIP_SYSCLK_INIT</state>
<state>EVK_MCIMXRM</state>
<state>FSL_SDK_ENABLE_DRIVER_CACHE_CONTROL=1</state>
<state>FT2_BUILD_LIBRARY</state>
<state>RT_USING_DLIBC</state>
<state>_DLIB_FILE_DESCRIPTOR</state>
<state>_DLIB_THREAD_SUPPORT</state>
@ -1416,38 +1396,20 @@
<state>$PROJ_DIR$\..\..\libcpu\arm\common</state>
<state>$PROJ_DIR$\..\..\components\drivers\include</state>
<state>$PROJ_DIR$\Libraries\drivers</state>
<state>$PROJ_DIR$\..\..\components\dfs\filesystems\devfs</state>
<state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src</state>
<state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\include</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\include\freetype</state>
<state>$PROJ_DIR$\..\..\components\gui\include</state>
<state>$PROJ_DIR$\drivers</state>
<state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src</state>
<state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\include\posix</state>
<state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\include\ipv4</state>
<state>$PROJ_DIR$\..\..\components\gui\include\rtgui</state>
<state>$PROJ_DIR$\.</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\smooth</state>
<state>$PROJ_DIR$\..\..\libcpu\arm\cortex-m7</state>
<state>$PROJ_DIR$\..\..\components\dfs\include</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\lodepng</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\include</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\include\freetype\internal</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\include\freetype\internal\services</state>
<state>$PROJ_DIR$\..\..\components\gui\src</state>
<state>$PROJ_DIR$\..\..\components\dfs\filesystems\devfs</state>
<state>$PROJ_DIR$\Libraries\CMSIS\Include</state>
<state>$PROJ_DIR$\Libraries\utilities</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\sfnt</state>
<state>$PROJ_DIR$\applications</state>
<state>$PROJ_DIR$\..\..\components\finsh</state>
<state>$PROJ_DIR$\..\..\components\dfs\filesystems\elmfat</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\truetype</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\psnames</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\autofit</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\cache</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\include\freetype\config</state>
<state>$PROJ_DIR$\..\..\components\gui\include\rtgui\widgets</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\base</state>
<state>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\builds\rt-thread</state>
<state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\include\posix</state>
<state>$PROJ_DIR$\drivers</state>
<state>$PROJ_DIR$\..\..\components\net\lwip-2.0.2\src\arch\include</state>
</option>
<option>
@ -2137,9 +2099,6 @@
<file>
<name>$PROJ_DIR$\applications\mem_test.c</name>
</file>
<file>
<name>$PROJ_DIR$\applications\sdio_test.c</name>
</file>
</group>
<group>
<name>CORTEX-M7</name>
@ -2254,15 +2213,6 @@
<file>
<name>$PROJ_DIR$\drivers\drv_eth.c</name>
</file>
<file>
<name>$PROJ_DIR$\drivers\drv_ft5406.c</name>
</file>
<file>
<name>$PROJ_DIR$\drivers\drv_i2c.c</name>
</file>
<file>
<name>$PROJ_DIR$\drivers\drv_lcd.c</name>
</file>
<file>
<name>$PROJ_DIR$\drivers\drv_sdio.c</name>
</file>
@ -2357,216 +2307,6 @@
<name>$PROJ_DIR$\..\..\components\finsh\symbol.c</name>
</file>
</group>
<group>
<name>freetype</name>
</group>
<group>
<name>FreeType</name>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\autofit\autofit.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\base\ftbase.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\base\ftbbox.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\base\ftbitmap.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\cache\ftcbasic.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\cache\ftccache.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\cache\ftccmap.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\cache\ftcglyph.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\cache\ftcimage.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\cache\ftcmanag.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\cache\ftcmru.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\cache\ftcsbits.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\base\ftfstype.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\base\ftglyph.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\base\ftinit.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\base\ftlcdfil.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\base\ftmm.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\base\ftpatent.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\builds\rt-thread\ftsystem.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\base\fttype1.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\builds\rt-thread\gb2312tounicode.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\psnames\psnames.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\sfnt\sfnt.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\smooth\smooth.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\freetype-2.6.2\src\truetype\truetype.c</name>
</file>
</group>
<group>
<name>GuiEngine</name>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\asc12font.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\asc16font.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\blit.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\box.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\color.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\container.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\dc.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\dc_blend.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\dc_buffer.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\dc_client.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\dc_hw.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\dc_rotozoom.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\dc_trans.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\filerw.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\font.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\font_bmp.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\font_fnt.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\font_freetype.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\font_hz_bmp.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\font_hz_file.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\hz12font.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\hz16font.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\image.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\image_bmp.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\image_container.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\image_hdc.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\image_jpg.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\image_png.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\image_xpm.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\libraries\lodepng\lodepng.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\matrix.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\mouse.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\region.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\rtgui_app.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\rtgui_driver.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\rtgui_object.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\rtgui_system.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\server.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\title.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\topwin.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\widget.c</name>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\gui\src\window.c</name>
</file>
</group>
<group>
<name>Kernel</name>
<file>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -8,9 +8,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 100
#define RT_DEBUG
@ -19,7 +17,6 @@
#define RT_DEBUG_THREAD 0
#define RT_USING_HOOK
#define IDLE_THREAD_STACK_SIZE 256
/* RT_USING_TIMER_SOFT is not set */
/* Inter-Thread communication */
@ -28,26 +25,19 @@
#define RT_USING_EVENT
#define RT_USING_MAILBOX
#define RT_USING_MESSAGEQUEUE
/* RT_USING_SIGNALS is not set */
/* Memory Management */
/* RT_USING_MEMPOOL is not set */
#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_M7
@ -60,7 +50,6 @@
/* C++ features */
/* RT_USING_CPLUSPLUS is not set */
/* Command shell */
@ -73,10 +62,8 @@
#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 */
/* Device virtual file system */
@ -91,64 +78,36 @@
#define RT_DFS_ELM_CODE_PAGE 437
#define RT_DFS_ELM_WORD_ACCESS
/* RT_DFS_ELM_USE_LFN_0 is not set */
/* RT_DFS_ELM_USE_LFN_1 is not set */
/* RT_DFS_ELM_USE_LFN_2 is not set */
#define RT_DFS_ELM_USE_LFN_3
#define RT_DFS_ELM_USE_LFN 3
#define RT_DFS_ELM_MAX_LFN 255
#define RT_DFS_ELM_DRIVES 2
#define RT_DFS_ELM_MAX_SECTOR_SIZE 512
/* RT_DFS_ELM_USE_ERASE is not set */
#define RT_DFS_ELM_REENTRANT
#define RT_USING_DFS_DEVFS
/* RT_USING_DFS_NET 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
/* RT_USING_PIN is not set */
/* RT_USING_MTD_NOR is not set */
/* RT_USING_MTD_NAND is not set */
/* RT_USING_RTC is not set */
#define RT_USING_SDIO
/* RT_USING_SPI 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 */
/* RT_USING_POSIX 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 */
/* RT_LWIP_IGMP is not set */
#define RT_LWIP_ICMP
/* RT_LWIP_SNMP is not set */
#define RT_LWIP_DNS
#define RT_LWIP_DHCP
#define IP_SOF_BROADCAST 1
@ -161,8 +120,6 @@
#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_MEMP_NUM_NETCONN 8
#define RT_LWIP_PBUF_NUM 16
#define RT_LWIP_RAW_PCB_NUM 4
@ -177,33 +134,24 @@
#define RT_LWIP_ETHTHREAD_PRIORITY 12
#define RT_LWIP_ETHTHREAD_STACKSIZE 1024
#define RT_LWIP_ETHTHREAD_MBOX_SIZE 8
/* 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 */
@ -211,77 +159,35 @@
/* RT-Thread GUI Engine */
/* PKG_USING_GUIENGINE is not set */
/* GUIENGINE_IMAGE_JPEG_NONE is not set */
/* GUIENGINE_IMAGE_JPEG is not set */
/* GUIENGINE_IMAGE_TJPGD is not set */
/* GUIENGINE_IMAGE_PNG_NONE is not set */
/* GUIENGINE_IMAGE_PNG is not set */
/* GUIENGINE_IMAGE_LODEPNG is not set */
/* PKG_USING_GUIENGINE_V200 is not set */
/* PKG_USING_GUIENGINE_LATEST_VERSION 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 */
/* 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 */
/* miscellaneous packages */
/* PKG_USING_FASTLZ is not set */
/* PKG_USING_MINILZO is not set */
/* PKG_USING_QUICKLZ is not set */
/* example package: hello */
/* PKG_USING_HELLO is not set */
/* PKG_USING_MULTIBUTTON is not set */
#define SOC_IMXRT1052
#define RT_USING_UART
#define RT_USING_UART1