diff --git a/bsp/fm3/adc.c b/bsp/fm3/adc.c index a41811b65fa84259aba01a5851c9507a6874aebd..d5a3ece00cac239fa8c527f56904b4babd849c27 100644 --- a/bsp/fm3/adc.c +++ b/bsp/fm3/adc.c @@ -14,13 +14,16 @@ #include #include -#include -#include -#include - #include "mb9bf506r.h" #include "adc.h" #include "led.h" +#include "lcd.h" + +#ifdef RT_USING_RTGUI +#include +#include +#include +#endif static struct rt_device adc; @@ -71,23 +74,36 @@ static rt_err_t rt_adc_control(rt_device_t dev, rt_uint8_t cmd, void *args) return RT_EOK; } +extern struct rt_messagequeue mq; extern rt_thread_t info_tid; rt_uint16_t adc_value; static void adc_thread_entry(void *parameter) { rt_device_t device; + device = rt_device_find("adc"); + +#ifdef RT_USING_RTGUI struct rtgui_event_command ecmd; RTGUI_EVENT_COMMAND_INIT(&ecmd); ecmd.type = RTGUI_CMD_USER_INT; ecmd.command_id = ADC_UPDATE; - device = rt_device_find("adc"); +#else + struct lcd_msg msg; +#endif + while(1) { rt_device_control(device, RT_DEVICE_CTRL_ADC_START, RT_NULL); rt_device_control(device, RT_DEVICE_CTRL_ADC_RESULT, &adc_value); pwm_update(adc_value/3); +#ifdef RT_USING_RTGUI rtgui_thread_send(info_tid, &ecmd.parent, sizeof(ecmd)); +#else + msg.type = ADC_MSG; + msg.adc_value = adc_value; + rt_mq_send(&mq, &msg, sizeof(msg)); +#endif rt_thread_delay(20); } } diff --git a/bsp/fm3/application.c b/bsp/fm3/application.c index 1963821d5192cda30334b2318c85c0e7061c85eb..21a0a5e19de45dc1ec480fefc5c0b60b650108db 100644 --- a/bsp/fm3/application.c +++ b/bsp/fm3/application.c @@ -20,21 +20,22 @@ #include #include "board.h" #include "led.h" - -#ifdef RT_USING_RTGUI #include "key.h" #include "adc.h" #include "lcd.h" #include "cpuusage.h" + +#ifdef RT_USING_RTGUI #include extern void rtgui_startup(); #endif +struct rt_messagequeue mq; +static char msg_pool[2048]; + void rt_init_thread_entry(void *parameter) { - rt_hw_led_init(); - -#ifdef RT_USING_RTGUI + rt_hw_led_init(); rt_hw_key_init(); rt_hw_adc_init(); rt_hw_lcd_init(); @@ -42,9 +43,76 @@ void rt_init_thread_entry(void *parameter) /* re-init device driver */ rt_device_init_all(); - + +#ifdef RT_USING_RTGUI /* startup rtgui */ rtgui_startup(); +#else + char buf[20] = {'\0'}; + struct lcd_msg msg; + rt_device_t device; + device = rt_device_find("lcd"); + rt_device_control(device, RT_DEVICE_CTRL_LCD_CLEAR_SCR, RT_NULL); + x = 1; + y = 1; + rt_device_control(device, RT_DEVICE_CTRL_LCD_PUT_STRING, "ADC"); + x = 1; + y = 20; + rt_device_control(device, RT_DEVICE_CTRL_LCD_PUT_STRING, "CPU"); + x = 1; + y = 40; + rt_device_control(device, RT_DEVICE_CTRL_LCD_PUT_STRING, "KEY"); + + while(1) + { + if (rt_mq_recv(&mq, &msg, sizeof(msg), RT_WAITING_FOREVER) == RT_EOK) + { + switch(msg.type) + { + case ADC_MSG: + x = 40; + y = 1; + rt_memset(buf, 0, sizeof(buf)); + rt_sprintf(buf, "%04d", msg.adc_value); + rt_device_control(device, RT_DEVICE_CTRL_LCD_PUT_STRING, buf); + break; + case CPU_MSG: + x = 40; + y = 20; + rt_memset(buf, 0, sizeof(buf)); + rt_sprintf(buf, "%03d %03d", msg.major, msg.minor); + rt_device_control(device, RT_DEVICE_CTRL_LCD_PUT_STRING, buf); + break; + case KEY_MSG: + x = 40; + y = 40; + rt_memset(buf, 0, sizeof(buf)); + switch(msg.key) + { + case KEY_DOWN: + rt_sprintf(buf, "DOWN KEY "); + break; + case KEY_UP: + rt_sprintf(buf, "UP KEY "); + break; + case KEY_RIGHT: + rt_sprintf(buf, "RIGHT KEY"); + break; + case KEY_LEFT: + rt_sprintf(buf, "LEFT KEY "); + break; + case KEY_ENTER: + rt_sprintf(buf, "ENTER KEY"); + break; + default: + rt_sprintf(buf, "NO KEY "); + break; + } + rt_device_control(device, RT_DEVICE_CTRL_LCD_PUT_STRING, buf); + break; + } + } + } #endif } @@ -52,6 +120,8 @@ int rt_application_init() { rt_thread_t init_thread; + rt_mq_init(&mq, "mqt", &msg_pool[0], 128 - sizeof(void*), sizeof(msg_pool), RT_IPC_FLAG_FIFO); + init_thread = rt_thread_create("init", rt_init_thread_entry, RT_NULL, 1024, 21, 20); if(init_thread != RT_NULL) rt_thread_startup(init_thread); diff --git a/bsp/fm3/cpuusage.c b/bsp/fm3/cpuusage.c index 2c600625fa8be2e172851008590fb16acc8b27e2..56d193b9ed1992a1e7c3a4a2567c93d522a2900b 100644 --- a/bsp/fm3/cpuusage.c +++ b/bsp/fm3/cpuusage.c @@ -1,9 +1,13 @@ #include #include +#include "cpuusage.h" +#include "lcd.h" + +#ifdef RT_USING_RTGUI #include #include #include -#include "cpuusage.h" +#endif #define CPU_USAGE_CALC_TICK 10 #define CPU_USAGE_LOOP 100 @@ -73,19 +77,30 @@ void cpu_usage_init() /* set idle thread hook */ rt_thread_idle_sethook(cpu_usage_idle_hook); } - +extern struct rt_messagequeue mq; extern rt_thread_t info_tid; static void cpu_thread_entry(void *parameter) { +#ifdef RT_USING_RTGUI struct rtgui_event_command ecmd; RTGUI_EVENT_COMMAND_INIT(&ecmd); ecmd.type = RTGUI_CMD_USER_INT; ecmd.command_id = CPU_UPDATE; - +#else + struct lcd_msg msg; +#endif + while (1) { +#ifdef RT_USING_RTGUI rtgui_thread_send(info_tid, &ecmd.parent, sizeof(ecmd)); +#else + msg.type = CPU_MSG; + msg.major = cpu_usage_major; + msg.minor = cpu_usage_minor; + rt_mq_send(&mq, &msg, sizeof(msg)); +#endif rt_thread_delay(20); } } diff --git a/bsp/fm3/fm3_easy_kit.dep b/bsp/fm3/fm3_easy_kit.dep index bc44654a65ba95f931e15902840df0ce86c1078b..8256dd00cac97bb029272533b5ae8cb780af7119 100644 --- a/bsp/fm3/fm3_easy_kit.dep +++ b/bsp/fm3/fm3_easy_kit.dep @@ -2,51 +2,155 @@ 2 - 65142411 + 2160502631 Debug + $PROJ_DIR$\Debug\Obj\label.pbi + $PROJ_DIR$\Debug\Obj\hz16font.pbi + $PROJ_DIR$\Debug\Obj\font_hz_bmp.o + $PROJ_DIR$\Debug\Obj\image_container.o + $PROJ_DIR$\Debug\Obj\hz16font.o + $PROJ_DIR$\Debug\Obj\cpuusage.pbi + $PROJ_DIR$\Debug\Obj\key.pbi + $PROJ_DIR$\Debug\Obj\lcd.pbi + $PROJ_DIR$\Debug\Obj\led.pbi + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\toplevel.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\rtgui_object.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\rtgui.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\label.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\region.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\color.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\rtgui_config.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\widget.h + $PROJ_DIR$\Debug\Obj\image_xpm.pbi + $PROJ_DIR$\Debug\Obj\listbox.pbi + $PROJ_DIR$\Debug\Obj\list_view.pbi + $PROJ_DIR$\Debug\Obj\menu.pbi + $PROJ_DIR$\Debug\Obj\dc_hw.pbi + $PROJ_DIR$\Debug\Obj\dc_buffer.pbi + $PROJ_DIR$\Debug\Obj\dc_client.pbi + $PROJ_DIR$\Debug\Obj\menu.o + $PROJ_DIR$\Debug\Obj\mouse.o + $PROJ_DIR$\Debug\Obj\notebook.o + $PROJ_DIR$\Debug\Obj\panel.o + $PROJ_DIR$\Debug\Obj\radiobox.o + $PROJ_DIR$\Debug\Obj\rtgui_object.o + $PROJ_DIR$\Debug\Obj\region.o + $PROJ_DIR$\Debug\Obj\title.o + $PROJ_DIR$\Debug\Obj\rtgui_system.o + $PROJ_DIR$\Debug\Obj\info.o + $PROJ_DIR$\Debug\Obj\rtgui_xml.o + $PROJ_DIR$\Debug\Obj\rtgui_theme.o + $PROJ_DIR$\Debug\Obj\rtgui_xml.pbi + $PROJ_DIR$\Debug\Obj\scrollbar.pbi + $PROJ_DIR$\Debug\Obj\slider.pbi + $PROJ_DIR$\Debug\Obj\textbox.pbi + $PROJ_DIR$\Debug\Obj\staticline.pbi + $PROJ_DIR$\Debug\Obj\title.pbi + $PROJ_DIR$\Debug\Obj\topwin.pbi + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\driver.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\list.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\window.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\rtgui_server.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\blit.h + $PROJ_DIR$\Debug\Obj\listctrl.pbi + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\event.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\kbddef.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\image.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\rtgui_theme.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\button.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\font.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\tree.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\dc.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\iconbox.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\checkbox.h + $PROJ_DIR$\Debug\Obj\image.pbi + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\radiobox.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\filerw.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\textbox.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\slider.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\scrollbar.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\progressbar.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\staticline.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\about_view.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\view.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\rtgui_system.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\box.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\container.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\listbox.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\image_hdc.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\combobox.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\font_freetype.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\workbench.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\filelist_view.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\image_container.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\title.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\image_xpm.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\dc_hw.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\rtgui_xml.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\dc_client.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\list_view.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\image_bmp.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\menu.h + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\listctrl.h $PROJ_DIR$\Debug\Obj\ipc.pbi - $PROJ_DIR$\Debug\Obj\mempool.o - $PROJ_DIR$\Debug\Obj\board.pbi - $PROJ_DIR$\Debug\Obj\module.o - $PROJ_DIR$\Debug\Obj\cpuport.o - $PROJ_DIR$\Debug\Obj\clock.pbi - $PROJ_DIR$\Debug\Obj\irq.pbi - $PROJ_DIR$\Debug\Obj\object.o - $PROJ_DIR$\Debug\Obj\device.pbi - $PROJ_DIR$\..\..\include\rthw.h - $PROJ_DIR$\Debug\Obj\slab.pbi $PROJ_DIR$\Debug\Obj\core_cm3.pbi + $PROJ_DIR$\Debug\Obj\slab.pbi $PROJ_DIR$\Debug\Obj\mem.o + $PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\notebook.h + $PROJ_DIR$\Debug\Obj\cpuport.o $PROJ_DIR$\Debug\Obj\system_mb9bf50x.pbi - $PROJ_DIR$\Debug\Obj\kservice.pbi $PROJ_DIR$\Debug\Obj\idle.o + $PROJ_DIR$\Debug\Obj\kservice.pbi $PROJ_DIR$\..\..\include\rtthread.h $PROJ_DIR$\Debug\Obj\timer.o $PROJ_DIR$\Debug\Obj\rtm.pbi + $PROJ_DIR$\Debug\Obj\scrollbar.o + $PROJ_DIR$\Debug\Obj\rtgui_object.pbi + $PROJ_DIR$\Debug\Obj\rtgui_system.pbi + $PROJ_DIR$\Debug\Obj\rtgui_theme.pbi + $PROJ_DIR$\Debug\Obj\led.o + $PROJ_DIR$\Debug\Obj\about_view.pbi + $PROJ_DIR$\Debug\Obj\blit.pbi + $PROJ_DIR$\Debug\Obj\asc12font.pbi + $PROJ_DIR$\Debug\Obj\asc16font.pbi + $PROJ_DIR$\Debug\Obj\box.pbi + $PROJ_DIR$\Debug\Obj\button.pbi + $PROJ_DIR$\Debug\Obj\color.pbi + $PROJ_DIR$\Debug\Obj\checkbox.pbi + $PROJ_DIR$\Debug\Obj\dc.pbi + $PROJ_DIR$\Debug\Obj\combobox.pbi + $PROJ_DIR$\Debug\Obj\container.pbi $PROJ_DIR$\Debug\Obj\core_cm3.o $PROJ_DIR$\Debug\Obj\start_iar.o $PROJ_DIR$\CMSIS\mb9bf506r.h - $PROJ_DIR$\Debug\Obj\application.pbi + $PROJ_DIR$\Debug\Obj\board.pbi + $PROJ_DIR$\Debug\Obj\module.o + $PROJ_DIR$\Debug\Obj\device.pbi $PROJ_DIR$\..\..\include\rtm.h $PROJ_DIR$\Debug\Obj\kservice.o + $PROJ_DIR$\..\..\include\rthw.h + $PROJ_DIR$\Debug\Obj\application.pbi $PROJ_DIR$\Debug\Obj\board.o - $PROJ_DIR$\..\..\src\kservice.h $PROJ_DIR$\Debug\Obj\object.pbi $PROJ_DIR$\Debug\Obj\module.pbi - $PROJ_DIR$\Debug\Exe\fm3_easy_kit.out - $PROJ_DIR$\Debug\Obj\clock.o $PROJ_DIR$\Debug\Obj\irq.o + $PROJ_DIR$\..\..\src\kservice.h + $PROJ_DIR$\Debug\Obj\clock.o + $PROJ_DIR$\Debug\Exe\fm3_easy_kit.out + $PROJ_DIR$\CMSIS\core_cm3.h $PROJ_DIR$\Debug\Obj\system_mb9bf50x.o $PROJ_DIR$\Debug\Obj\cpuport.pbi - $PROJ_DIR$\CMSIS\core_cm3.h $PROJ_DIR$\Debug\Obj\rtm.o $PROJ_DIR$\Debug\Obj\thread.pbi - $PROJ_DIR$\board.h - $PROJ_DIR$\Debug\Obj\fm3_easy_kit.pbd - $PROJ_DIR$\Debug\Obj\thread.o + $PROJ_DIR$\Debug\Obj\image_bmp.pbi + $PROJ_DIR$\Debug\Obj\image_container.pbi + $PROJ_DIR$\Debug\Obj\list_view.o + $PROJ_DIR$\Debug\Obj\hz12font.o $PROJ_DIR$\Debug\Obj\startup.pbi + $PROJ_DIR$\Debug\Obj\thread.o + $PROJ_DIR$\Debug\Obj\fm3_easy_kit.pbd $PROJ_DIR$\Debug\Obj\slab.o $PROJ_DIR$\Debug\Obj\device.o $PROJ_DIR$\Debug\Obj\timer.pbi @@ -55,29 +159,173 @@ $PROJ_DIR$\Debug\Obj\ipc.o $PROJ_DIR$\Debug\Obj\scheduler.o $PROJ_DIR$\rtconfig.h + $PROJ_DIR$\Debug\Obj\font_freetype.pbi + $PROJ_DIR$\Debug\Obj\font_hz_bmp.pbi + $PROJ_DIR$\Debug\Obj\font_hz_file.pbi + $PROJ_DIR$\Debug\Obj\hz12font.pbi + $PROJ_DIR$\Debug\Obj\label.o + $PROJ_DIR$\Debug\Obj\listbox.o + $PROJ_DIR$\Debug\Obj\clock.pbi + $PROJ_DIR$\Debug\Obj\font_hz_file.o $PROJ_DIR$\CMSIS\core_cmFunc.h + $PROJ_DIR$\CMSIS\core_cmInstr.h $PROJ_DIR$\CMSIS\system_mb9bf50x.h - $PROJ_DIR$\..\..\include\rtdef.h $PROJ_DIR$\Debug\Obj\mem.pbi - $PROJ_DIR$\Debug\Obj\context_iar.o $PROJ_DIR$\Debug\Obj\startup.o - $PROJ_DIR$\CMSIS\core_cmInstr.h + $PROJ_DIR$\..\..\include\rtdef.h + $PROJ_DIR$\Debug\Obj\context_iar.o $PROJ_DIR$\Debug\Obj\fault_iar.o $PROJ_DIR$\Debug\Obj\scheduler.pbi $PROJ_DIR$\Debug\Obj\application.o - $PROJ_DIR$\CMSIS\core_cm3.c - $PROJ_DIR$\CMSIS\system_mb9bf50x.c + $PROJ_DIR$\Debug\Obj\filelist_view.o + $PROJ_DIR$\Debug\Obj\filerw.o + $PROJ_DIR$\Debug\Obj\dc_client.o + $PROJ_DIR$\Debug\Obj\dc_hw.o + $PROJ_DIR$\Debug\Obj\driver.o + $PROJ_DIR$\Debug\Obj\font_bmp.o + $PROJ_DIR$\Debug\Obj\font.o + $PROJ_DIR$\Debug\Obj\asc16font.o + $PROJ_DIR$\Debug\Obj\asc12font.o + $PROJ_DIR$\Debug\Obj\dc_buffer.o + $PROJ_DIR$\Debug\Obj\dc.o + $PROJ_DIR$\Debug\Obj\about_view.o + $PROJ_DIR$\Debug\Obj\blit.o + $PROJ_DIR$\Debug\Obj\box.o + $PROJ_DIR$\Debug\Obj\button.o + $PROJ_DIR$\Debug\Obj\checkbox.o + $PROJ_DIR$\Debug\Obj\color.o + $PROJ_DIR$\Debug\Obj\combobox.o + $PROJ_DIR$\Debug\Obj\container.o + $PROJ_DIR$\Debug\Obj\font_freetype.o + $PROJ_DIR$\Debug\Obj\image_jpg.o + $PROJ_DIR$\Debug\Obj\image_png.o + $PROJ_DIR$\Debug\Obj\image_xpm.o + $PROJ_DIR$\Debug\Obj\irq.pbi + $PROJ_DIR$\Debug\Obj\object.o + $PROJ_DIR$\Debug\Obj\mempool.o + $PROJ_DIR$\Debug\Obj\image.o + $PROJ_DIR$\Debug\Obj\image_bmp.o + $PROJ_DIR$\Debug\Obj\image_hdc.o + $PROJ_DIR$\Debug\Obj\progressbar.o + $PROJ_DIR$\Debug\Obj\adc.o + $PROJ_DIR$\Debug\Obj\slider.o + $PROJ_DIR$\Debug\Obj\server.o + $PROJ_DIR$\Debug\Obj\textbox.o + $PROJ_DIR$\Debug\Obj\staticline.o + $PROJ_DIR$\Debug\Obj\toplevel.o + $PROJ_DIR$\Debug\Obj\topwin.o + $PROJ_DIR$\Debug\Obj\view.o + $PROJ_DIR$\Debug\Obj\widget.o + $PROJ_DIR$\Debug\Obj\window.o + $PROJ_DIR$\Debug\Obj\workbench.o + $PROJ_DIR$\Debug\Obj\cpuusage.o + $PROJ_DIR$\Debug\Obj\key.o + $PROJ_DIR$\Debug\Obj\lcd.o + $PROJ_DIR$\Debug\Obj\iconbox.o + $PROJ_DIR$\Debug\Obj\driver.pbi + $PROJ_DIR$\Debug\Obj\filerw.pbi + $PROJ_DIR$\Debug\Obj\panel.pbi + $PROJ_DIR$\Debug\Obj\mouse.pbi + $PROJ_DIR$\Debug\Obj\notebook.pbi + $PROJ_DIR$\Debug\Obj\region.pbi + $PROJ_DIR$\Debug\Obj\progressbar.pbi + $PROJ_DIR$\Debug\Obj\radiobox.pbi + $PROJ_DIR$\Debug\Obj\server.pbi + $PROJ_DIR$\Debug\Obj\image_hdc.pbi + $PROJ_DIR$\Debug\Obj\image_jpg.pbi + $PROJ_DIR$\Debug\Obj\image_png.pbi + $PROJ_DIR$\Debug\Obj\adc.pbi + $PROJ_DIR$\Debug\Obj\workbench.pbi + $PROJ_DIR$\Debug\Obj\info.pbi + $PROJ_DIR$\Debug\Obj\listctrl.o + $PROJ_DIR$\Debug\Obj\filelist_view.pbi + $PROJ_DIR$\Debug\Obj\font.pbi + $PROJ_DIR$\Debug\Obj\iconbox.pbi + $PROJ_DIR$\Debug\Obj\font_bmp.pbi + $PROJ_DIR$\Debug\Obj\toplevel.pbi + $PROJ_DIR$\..\..\components\rtgui\common\font_hz_file.c + $PROJ_DIR$\..\..\components\rtgui\common\font_hz_bmp.c + $PROJ_DIR$\..\..\components\rtgui\common\hz12font.c + $PROJ_DIR$\..\..\components\rtgui\common\hz16font.c + $PROJ_DIR$\..\..\components\rtgui\widgets\iconbox.c + $PROJ_DIR$\..\..\components\rtgui\common\image.c + $PROJ_DIR$\..\..\components\rtgui\common\image_bmp.c + $PROJ_DIR$\..\..\components\rtgui\common\image_container.c + $PROJ_DIR$\..\..\components\rtgui\common\image_jpg.c + $PROJ_DIR$\..\..\components\rtgui\common\image_hdc.c + $PROJ_DIR$\..\..\components\rtgui\common\image_png.c + $PROJ_DIR$\..\..\components\rtgui\common\image_xpm.c + $PROJ_DIR$\..\..\components\rtgui\widgets\label.c + $PROJ_DIR$\..\..\components\rtgui\widgets\list_view.c + $PROJ_DIR$\..\..\components\rtgui\widgets\listbox.c + $PROJ_DIR$\..\..\components\rtgui\widgets\listctrl.c + $PROJ_DIR$\..\..\components\rtgui\widgets\menu.c + $PROJ_DIR$\..\..\components\rtgui\server\mouse.c + $PROJ_DIR$\..\..\components\rtgui\server\mouse.h + $PROJ_DIR$\..\..\components\rtgui\widgets\notebook.c + $PROJ_DIR$\..\..\components\rtgui\server\panel.c + $PROJ_DIR$\..\..\components\rtgui\server\panel.h + $PROJ_DIR$\..\..\components\rtgui\widgets\progressbar.c + $PROJ_DIR$\..\..\components\rtgui\common\asc12font.c + $PROJ_DIR$\..\..\components\rtgui\common\asc16font.c + $PROJ_DIR$\..\..\components\rtgui\common\blit.c + $PROJ_DIR$\..\..\components\rtgui\widgets\box.c + $PROJ_DIR$\..\..\components\rtgui\widgets\button.c + $PROJ_DIR$\..\..\components\rtgui\widgets\checkbox.c + $PROJ_DIR$\..\..\components\rtgui\common\color.c + $PROJ_DIR$\..\..\components\rtgui\widgets\combobox.c + $PROJ_DIR$\..\..\components\rtgui\widgets\container.c + $PROJ_DIR$\..\..\components\rtgui\common\dc.c + $PROJ_DIR$\..\..\components\rtgui\common\dc_buffer.c + $PROJ_DIR$\..\..\components\rtgui\common\dc_client.c + $PROJ_DIR$\..\..\components\rtgui\common\dc_hw.c + $PROJ_DIR$\..\..\components\rtgui\server\driver.c + $PROJ_DIR$\..\..\components\rtgui\widgets\filelist_view.c + $PROJ_DIR$\..\..\components\rtgui\common\font.c + $PROJ_DIR$\..\..\components\rtgui\common\filerw.c + $PROJ_DIR$\..\..\components\rtgui\common\font_bmp.c + $PROJ_DIR$\..\..\components\rtgui\common\font_freetype.c + $PROJ_DIR$\..\..\components\rtgui\widgets\radiobox.c + $PROJ_DIR$\..\..\components\rtgui\common\region.c + $PROJ_DIR$\..\..\components\rtgui\common\rtgui_object.c + $PROJ_DIR$\..\..\components\rtgui\common\rtgui_system.c + $PROJ_DIR$\..\..\components\rtgui\common\rtgui_theme.c + $PROJ_DIR$\..\..\components\rtgui\common\rtgui_xml.c + $PROJ_DIR$\..\..\components\rtgui\widgets\scrollbar.c + $PROJ_DIR$\..\..\components\rtgui\server\server.c + $PROJ_DIR$\..\..\components\rtgui\widgets\slider.c + $PROJ_DIR$\..\..\components\rtgui\widgets\staticline.c + $PROJ_DIR$\..\..\components\rtgui\widgets\textbox.c + $PROJ_DIR$\..\..\components\rtgui\widgets\title.c + $PROJ_DIR$\..\..\components\rtgui\widgets\toplevel.c + $PROJ_DIR$\..\..\components\rtgui\server\topwin.c + $PROJ_DIR$\..\..\components\rtgui\server\topwin.h + $PROJ_DIR$\..\..\components\rtgui\widgets\view.c + $PROJ_DIR$\..\..\components\rtgui\widgets\widget.c + $PROJ_DIR$\..\..\components\rtgui\widgets\window.c + $PROJ_DIR$\..\..\components\rtgui\widgets\workbench.c + $PROJ_DIR$\application.c + $PROJ_DIR$\adc.c + $PROJ_DIR$\board.c + $PROJ_DIR$\cpuusage.c + $PROJ_DIR$\startup.c + $PROJ_DIR$\key.c + $PROJ_DIR$\info.c + $PROJ_DIR$\lcd.c + $PROJ_DIR$\led.c + $PROJ_DIR$\Debug\Obj\view.pbi + $PROJ_DIR$\Debug\Obj\widget.pbi + $PROJ_DIR$\Debug\Obj\window.pbi $PROJ_DIR$\..\..\libcpu\arm\fm3\context_iar.S - $PROJ_DIR$\..\..\libcpu\arm\fm3\cpuport.c - $PROJ_DIR$\..\..\libcpu\arm\fm3\fault_iar.S + $PROJ_DIR$\CMSIS\system_mb9bf50x.c $PROJ_DIR$\..\..\libcpu\arm\fm3\start_iar.S $PROJ_DIR$\..\..\src\clock.c $PROJ_DIR$\..\..\src\device.c $PROJ_DIR$\..\..\src\idle.c $PROJ_DIR$\..\..\src\ipc.c $PROJ_DIR$\..\..\src\irq.c - $PROJ_DIR$\..\..\src\kservice.c $PROJ_DIR$\..\..\src\mem.c + $PROJ_DIR$\..\..\src\kservice.c $PROJ_DIR$\..\..\src\mempool.c $PROJ_DIR$\..\..\src\module.c $PROJ_DIR$\..\..\src\object.c @@ -86,169 +334,254 @@ $PROJ_DIR$\..\..\src\slab.c $PROJ_DIR$\..\..\src\thread.c $PROJ_DIR$\..\..\src\timer.c - $PROJ_DIR$\application.c - $PROJ_DIR$\board.c - $PROJ_DIR$\startup.c + $PROJ_DIR$\..\..\components\rtgui\widgets\about_view.c + $PROJ_DIR$\..\..\libcpu\arm\fm3\cpuport.c + $PROJ_DIR$\..\..\libcpu\arm\fm3\fault_iar.S + $PROJ_DIR$\CMSIS\core_cm3.c [ROOT_NODE] ILINK - 29 + 132 - $PROJ_DIR$\Debug\Obj\fm3_easy_kit.pbd + $PROJ_DIR$\..\..\components\rtgui\common\font_hz_file.c + + + ICCARM + 160 + + + BICOMP + 155 + + - BILINK - 22 2 5 11 33 8 45 0 6 14 52 44 28 27 18 57 10 40 13 36 43 + BICOMP + 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 69 - $PROJ_DIR$\CMSIS\core_cm3.c + $PROJ_DIR$\..\..\components\rtgui\common\font_hz_bmp.c ICCARM - 19 + 2 BICOMP - 11 + 154 + + + BICOMP + 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 + + - $PROJ_DIR$\CMSIS\system_mb9bf50x.c + $PROJ_DIR$\..\..\components\rtgui\common\hz12font.c ICCARM - 32 + 141 BICOMP - 13 + 156 BICOMP - 21 34 55 49 50 + 54 11 97 166 152 15 10 44 55 - $PROJ_DIR$\..\..\libcpu\arm\fm3\context_iar.S + $PROJ_DIR$\..\..\components\rtgui\common\hz16font.c - AARM - 53 + ICCARM + 4 + + + BICOMP + 1 + + + BICOMP + 54 11 97 166 152 15 10 44 55 + + - $PROJ_DIR$\..\..\libcpu\arm\fm3\cpuport.c + $PROJ_DIR$\..\..\components\rtgui\widgets\iconbox.c ICCARM - 4 + 215 BICOMP - 33 + 234 BICOMP - 9 16 51 48 21 34 55 49 50 + 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 57 51 61 52 46 12 53 62 58 60 63 64 65 66 - $PROJ_DIR$\..\..\libcpu\arm\fm3\fault_iar.S + $PROJ_DIR$\..\..\components\rtgui\common\image.c - AARM - 56 + ICCARM + 197 + + + BICOMP + 59 + + + BICOMP + 97 166 152 51 56 11 15 10 54 44 55 43 14 16 13 49 50 61 73 69 78 + + - $PROJ_DIR$\..\..\libcpu\arm\fm3\start_iar.S + $PROJ_DIR$\..\..\components\rtgui\common\image_bmp.c - AARM - 20 + ICCARM + 198 + + + BICOMP + 138 + + + BICOMP + 97 166 152 81 56 11 15 10 54 44 55 43 14 16 13 49 50 51 61 69 85 47 + + - $PROJ_DIR$\..\..\src\clock.c + $PROJ_DIR$\..\..\components\rtgui\common\image_container.c ICCARM - 30 + 3 BICOMP - 5 + 139 BICOMP - 16 51 48 + 78 11 97 166 152 15 10 51 56 54 44 55 43 14 16 13 49 50 61 - $PROJ_DIR$\..\..\src\device.c + $PROJ_DIR$\..\..\components\rtgui\common\image_jpg.c ICCARM - 42 + 191 BICOMP - 8 + 226 BICOMP - 16 51 48 26 + 97 166 152 11 15 10 - $PROJ_DIR$\..\..\src\idle.c + $PROJ_DIR$\..\..\components\rtgui\common\image_hdc.c ICCARM - 15 + 199 BICOMP - 45 + 225 BICOMP - 9 16 51 48 26 + 97 166 152 81 56 11 15 10 54 44 55 43 14 16 13 49 50 51 61 69 73 - $PROJ_DIR$\..\..\src\ipc.c + $PROJ_DIR$\..\..\components\rtgui\common\image_png.c + + + ICCARM + 192 + + + BICOMP + 227 + + + + + BICOMP + 97 166 152 69 11 15 10 + + + + + $PROJ_DIR$\..\..\components\rtgui\common\image_xpm.c + + + ICCARM + 193 + + + BICOMP + 17 + + + + + BICOMP + 61 11 97 166 152 15 10 80 51 56 54 44 55 43 14 16 13 49 50 69 + + + + + $PROJ_DIR$\..\..\components\rtgui\widgets\label.c ICCARM - 46 + 157 BICOMP @@ -258,283 +591,1338 @@ BICOMP - 16 51 48 9 26 + 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 12 69 52 46 53 51 61 62 57 58 60 63 64 65 66 - $PROJ_DIR$\..\..\src\irq.c + $PROJ_DIR$\..\..\components\rtgui\widgets\list_view.c ICCARM - 31 + 140 BICOMP - 6 + 19 BICOMP - 9 16 51 48 + 52 11 97 166 152 15 10 46 44 12 16 13 49 50 14 54 55 53 51 56 43 61 62 57 58 60 63 64 65 66 84 69 68 70 71 - $PROJ_DIR$\..\..\src\kservice.c + $PROJ_DIR$\..\..\components\rtgui\widgets\listbox.c ICCARM - 24 + 158 BICOMP - 14 + 18 BICOMP - 16 51 48 9 + 52 11 97 166 152 15 10 46 44 12 16 13 49 50 14 54 55 53 51 56 43 61 62 57 58 60 63 64 65 66 72 69 - $PROJ_DIR$\..\..\src\mem.c + $PROJ_DIR$\..\..\components\rtgui\widgets\listctrl.c ICCARM - 12 + 231 BICOMP - 52 + 48 BICOMP - 16 51 48 + 52 11 97 166 152 15 10 46 44 12 16 13 49 50 14 54 55 53 51 56 43 61 62 57 58 60 63 64 65 66 87 69 - $PROJ_DIR$\..\..\src\mempool.c + $PROJ_DIR$\..\..\components\rtgui\widgets\menu.c ICCARM - 1 + 24 BICOMP - 44 + 20 BICOMP - 9 16 51 48 26 + 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 86 51 61 45 9 71 70 87 69 52 46 12 53 62 57 58 60 63 64 65 66 - $PROJ_DIR$\..\..\src\module.c + $PROJ_DIR$\..\..\components\rtgui\server\mouse.c ICCARM - 3 + 25 BICOMP - 28 + 219 BICOMP - 16 51 48 23 26 + 255 11 97 166 152 15 10 51 56 54 44 55 43 14 16 13 49 50 61 293 79 9 71 46 69 - $PROJ_DIR$\..\..\src\object.c + $PROJ_DIR$\..\..\components\rtgui\widgets\notebook.c ICCARM - 7 + 26 + + + BICOMP + 220 + + BICOMP + 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 69 92 71 + + + + + $PROJ_DIR$\..\..\components\rtgui\server\panel.c + + + ICCARM 27 + + BICOMP + 218 + BICOMP - 16 51 48 9 26 + 258 11 97 166 152 15 10 44 13 255 51 56 54 55 43 14 16 49 50 61 293 79 9 71 46 69 - $PROJ_DIR$\..\..\src\rtm.c + $PROJ_DIR$\..\..\components\rtgui\widgets\progressbar.c ICCARM - 35 + 200 BICOMP - 18 + 222 BICOMP - 16 51 48 + 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 52 46 12 53 51 61 62 57 58 60 63 64 65 66 - $PROJ_DIR$\..\..\src\scheduler.c + $PROJ_DIR$\..\..\components\rtgui\common\asc12font.c ICCARM - 47 + 179 BICOMP - 57 + 107 BICOMP - 16 51 48 9 26 + 54 11 97 166 152 15 10 44 55 - $PROJ_DIR$\..\..\src\slab.c + $PROJ_DIR$\..\..\components\rtgui\common\asc16font.c ICCARM - 41 + 178 BICOMP - 10 + 108 BICOMP - 9 16 51 48 26 + 54 11 97 166 152 15 10 44 55 - $PROJ_DIR$\..\..\src\thread.c + $PROJ_DIR$\..\..\components\rtgui\common\blit.c ICCARM - 39 + 183 BICOMP - 36 + 106 BICOMP - 16 51 48 9 26 + 11 97 166 152 15 10 47 - $PROJ_DIR$\..\..\src\timer.c + $PROJ_DIR$\..\..\components\rtgui\widgets\box.c ICCARM - 17 + 184 BICOMP - 43 + 109 BICOMP - 16 51 48 9 26 + 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 70 71 - $PROJ_DIR$\application.c + $PROJ_DIR$\..\..\components\rtgui\widgets\button.c ICCARM - 58 + 185 BICOMP - 22 + 110 BICOMP - 16 51 48 37 21 34 55 49 50 + 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 53 51 61 12 52 46 62 57 58 60 63 64 65 66 - $PROJ_DIR$\board.c + $PROJ_DIR$\..\..\components\rtgui\widgets\checkbox.c ICCARM - 25 + 186 BICOMP - 2 + 112 BICOMP - 9 16 51 48 37 21 34 55 49 50 + 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 52 46 12 53 51 61 62 57 58 60 63 64 65 66 - $PROJ_DIR$\startup.c + $PROJ_DIR$\..\..\components\rtgui\common\color.c ICCARM - 54 + 187 BICOMP - 40 + 111 BICOMP - 9 16 51 48 37 21 34 55 49 50 + 14 11 97 166 152 15 10 - - - Release - - - [MULTI_TOOL] - ILINK + + $PROJ_DIR$\..\..\components\rtgui\widgets\combobox.c + + + ICCARM + 188 + + + BICOMP + 114 + + + + + BICOMP + 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 52 46 12 53 51 61 62 57 58 60 63 64 65 66 74 45 9 71 70 72 69 + + + + + $PROJ_DIR$\..\..\components\rtgui\widgets\container.c + + + ICCARM + 189 + + + BICOMP + 115 + + + + + BICOMP + 9 71 16 11 97 166 152 15 10 44 13 49 50 14 54 55 + + + + + $PROJ_DIR$\..\..\components\rtgui\common\dc.c + + + ICCARM + 181 + + + BICOMP + 113 + + + + + BICOMP + 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 69 + + + + + $PROJ_DIR$\..\..\components\rtgui\common\dc_buffer.c + + + ICCARM + 180 + + + BICOMP + 22 + + + + + BICOMP + 11 97 166 152 15 10 56 54 44 55 43 14 16 13 49 50 47 81 69 + + + + + $PROJ_DIR$\..\..\components\rtgui\common\dc_client.c + + + ICCARM + 173 + + + BICOMP + 23 + + + + + BICOMP + 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 81 83 69 68 70 71 45 9 76 79 + + + + + $PROJ_DIR$\..\..\components\rtgui\common\dc_hw.c + + + ICCARM + 174 + + + BICOMP + 21 + + + + + BICOMP + 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 81 69 68 70 71 45 9 76 79 + + + + + $PROJ_DIR$\..\..\components\rtgui\server\driver.c + + + ICCARM + 175 + + + BICOMP + 216 + + + + + BICOMP + 43 44 11 97 166 152 15 10 14 + + + + + $PROJ_DIR$\..\..\components\rtgui\widgets\filelist_view.c + + + ICCARM + 171 + + + BICOMP + 232 + + + + + BICOMP + 10 97 166 152 69 11 15 52 46 44 12 16 13 49 50 14 54 55 53 51 56 43 61 62 57 58 60 63 64 65 66 68 70 71 76 9 77 72 45 + + + + + $PROJ_DIR$\..\..\components\rtgui\common\font.c + + + ICCARM + 177 + + + BICOMP + 233 + + + + + BICOMP + 54 11 97 166 152 15 10 44 55 56 43 14 16 13 49 50 + + + + + $PROJ_DIR$\..\..\components\rtgui\common\filerw.c + + + ICCARM + 172 + + + BICOMP + 217 + + + + + BICOMP + 61 11 97 166 152 15 10 69 + + + + + $PROJ_DIR$\..\..\components\rtgui\common\font_bmp.c + + + ICCARM + 176 + + + BICOMP + 235 + + + + + BICOMP + 54 11 97 166 152 15 10 44 55 56 43 14 16 13 49 50 + + + + + $PROJ_DIR$\..\..\components\rtgui\common\font_freetype.c + + + ICCARM + 190 + + + BICOMP + 153 + + + + + BICOMP + 75 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 + + + + + $PROJ_DIR$\..\..\components\rtgui\widgets\radiobox.c + + + ICCARM + 28 + + + BICOMP + 223 + + + + + BICOMP + 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 52 46 12 53 51 61 62 57 58 60 63 64 65 66 + + + + + $PROJ_DIR$\..\..\components\rtgui\common\region.c + + + ICCARM + 30 + + + BICOMP + 221 + + + + + BICOMP + 13 11 97 166 152 15 10 69 + + + + + $PROJ_DIR$\..\..\components\rtgui\common\rtgui_object.c + + + ICCARM + 29 + + + BICOMP + 101 + + + + + BICOMP + 10 97 166 152 69 11 15 + + + + + $PROJ_DIR$\..\..\components\rtgui\common\rtgui_system.c + + + ICCARM + 32 + + + BICOMP + 102 + + + + + BICOMP + 11 97 166 152 15 10 43 44 14 51 56 54 55 16 13 49 50 61 52 46 12 53 62 57 58 60 63 64 65 66 69 45 9 71 70 + + + + + $PROJ_DIR$\..\..\components\rtgui\common\rtgui_theme.c + + + ICCARM + 35 + + + BICOMP + 103 + + + + + BICOMP + 11 97 166 152 15 10 56 54 44 55 43 14 16 13 49 50 53 51 61 12 62 57 79 9 71 52 46 58 60 63 64 65 66 69 + + + + + $PROJ_DIR$\..\..\components\rtgui\common\rtgui_xml.c + + + ICCARM + 34 + + + BICOMP + 36 + + + + + BICOMP + 82 11 97 166 152 15 10 69 + + + + + $PROJ_DIR$\..\..\components\rtgui\widgets\scrollbar.c + + + ICCARM + 100 + + + BICOMP + 37 + + + + + BICOMP + 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 52 46 12 53 51 61 62 57 58 60 63 64 65 66 + + + + + $PROJ_DIR$\..\..\components\rtgui\server\server.c + + + ICCARM + 203 + + + BICOMP + 224 + + + + + BICOMP + 11 97 166 152 15 10 49 50 69 43 44 14 255 51 56 54 55 16 13 61 293 79 9 71 46 258 + + + + + $PROJ_DIR$\..\..\components\rtgui\widgets\slider.c + + + ICCARM + 202 + + + BICOMP + 38 + + + + + BICOMP + 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 52 46 12 53 51 61 62 57 58 60 63 64 65 66 + + + + + $PROJ_DIR$\..\..\components\rtgui\widgets\staticline.c + + + ICCARM + 205 + + + BICOMP + 40 + + + + + BICOMP + 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 52 46 12 53 51 61 62 57 58 60 63 64 65 66 + + + + + $PROJ_DIR$\..\..\components\rtgui\widgets\textbox.c + + + ICCARM + 204 + + + BICOMP + 39 + + + + + BICOMP + 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 52 46 12 53 51 61 62 57 58 60 63 64 65 66 69 + + + + + $PROJ_DIR$\..\..\components\rtgui\widgets\title.c + + + ICCARM + 31 + + + BICOMP + 41 + + + + + BICOMP + 79 9 71 16 11 97 166 152 15 10 44 13 49 50 14 54 55 69 + + + + + $PROJ_DIR$\..\..\components\rtgui\widgets\toplevel.c + + + ICCARM + 206 + + + BICOMP + 236 + + + + + $PROJ_DIR$\..\..\components\rtgui\server\topwin.c + + + ICCARM + 207 + + + BICOMP + 42 + + + + + $PROJ_DIR$\..\..\components\rtgui\widgets\view.c + + + ICCARM + 208 + + + BICOMP + 307 + + + + + $PROJ_DIR$\..\..\components\rtgui\widgets\widget.c + + + ICCARM + 209 + + + BICOMP + 308 + + + + + $PROJ_DIR$\..\..\components\rtgui\widgets\window.c + + + ICCARM + 210 + + + BICOMP + 309 + + + + + $PROJ_DIR$\..\..\components\rtgui\widgets\workbench.c + + + ICCARM + 211 + + + BICOMP + 229 + + + + + $PROJ_DIR$\application.c + + + ICCARM + 170 + + + BICOMP + 125 + + + + + $PROJ_DIR$\adc.c + + + ICCARM + 201 + + + BICOMP + 228 + + + + + $PROJ_DIR$\board.c + + + ICCARM + 126 + + + BICOMP + 119 + + + + + $PROJ_DIR$\cpuusage.c + + + ICCARM + 212 + + + BICOMP + 5 + + + + + $PROJ_DIR$\startup.c + + + ICCARM + 165 + + + BICOMP + 142 + + + + + $PROJ_DIR$\key.c + + + ICCARM + 213 + + + BICOMP + 6 + + + + + $PROJ_DIR$\info.c + + + ICCARM + 33 + + + BICOMP + 230 + + + + + $PROJ_DIR$\lcd.c + + + ICCARM + 214 + + + BICOMP + 7 + + + + + $PROJ_DIR$\led.c + + + ICCARM + 104 + + + BICOMP + 8 + + + + + $PROJ_DIR$\..\..\libcpu\arm\fm3\context_iar.S + + + AARM + 167 + + + + + $PROJ_DIR$\CMSIS\system_mb9bf50x.c + + + ICCARM + 134 + + + BICOMP + 94 + + + + + BICOMP + 118 133 162 161 163 + + + + + $PROJ_DIR$\..\..\libcpu\arm\fm3\start_iar.S + + + AARM + 117 + + + + + $PROJ_DIR$\..\..\src\clock.c + + + ICCARM + 131 + + + BICOMP + 159 + + + + + BICOMP + 97 166 152 + + + + + $PROJ_DIR$\..\..\src\device.c + + + ICCARM + 146 + + + BICOMP + 121 + + + + + BICOMP + 97 166 152 130 + + + + + $PROJ_DIR$\..\..\src\idle.c + + + ICCARM + 95 + + + BICOMP + 149 + + + + + BICOMP + 124 97 166 152 130 + + + + + $PROJ_DIR$\..\..\src\ipc.c + + + ICCARM + 150 + + + BICOMP + 88 + + + + + BICOMP + 97 166 152 124 130 + + + + + $PROJ_DIR$\..\..\src\irq.c + + + ICCARM + 129 + + + BICOMP + 194 + + + + + BICOMP + 124 97 166 152 + + + + + $PROJ_DIR$\..\..\src\mem.c + + + ICCARM + 91 + + + BICOMP + 164 + + + + + BICOMP + 97 166 152 + + + + + $PROJ_DIR$\..\..\src\kservice.c + + + ICCARM + 123 + + + BICOMP + 96 + + + + + BICOMP + 97 166 152 124 + + + + + $PROJ_DIR$\..\..\src\mempool.c + + + ICCARM + 196 + + + BICOMP + 148 + + + + + BICOMP + 124 97 166 152 130 + + + + + $PROJ_DIR$\..\..\src\module.c + + + ICCARM + 120 + + + BICOMP + 128 + + + + + BICOMP + 97 166 152 122 130 + + + + + $PROJ_DIR$\..\..\src\object.c + + + ICCARM + 195 + + + BICOMP + 127 + + + + + BICOMP + 97 166 152 124 130 + + + + + $PROJ_DIR$\..\..\src\rtm.c + + + ICCARM + 136 + + + BICOMP + 99 + + + + + BICOMP + 97 166 152 + + + + + $PROJ_DIR$\..\..\src\scheduler.c + + + ICCARM + 151 + + + BICOMP + 169 + + + + + BICOMP + 97 166 152 124 130 + + + + + $PROJ_DIR$\..\..\src\slab.c + + + ICCARM + 145 + + + BICOMP + 90 + + + + + BICOMP + 124 97 166 152 130 + + + + + $PROJ_DIR$\..\..\src\thread.c + + + ICCARM + 143 + + + BICOMP + 137 + + + + + BICOMP + 97 166 152 124 130 + + + + + $PROJ_DIR$\..\..\src\timer.c + + + ICCARM + 98 + + + BICOMP + 147 + + + + + BICOMP + 97 166 152 124 130 + + + + + $PROJ_DIR$\..\..\components\rtgui\widgets\about_view.c + + + ICCARM + 182 + + + BICOMP + 105 + + + + + BICOMP + 52 11 97 166 152 15 10 46 44 12 16 13 49 50 14 54 55 53 51 56 43 61 62 57 58 60 63 64 65 66 67 69 68 70 71 + + + + + $PROJ_DIR$\..\..\libcpu\arm\fm3\cpuport.c + + + ICCARM + 93 + + + BICOMP + 135 + + + + + BICOMP + 124 97 166 152 118 133 162 161 163 + + + + + $PROJ_DIR$\..\..\libcpu\arm\fm3\fault_iar.S + + + AARM + 168 + + + + + $PROJ_DIR$\CMSIS\core_cm3.c + + + ICCARM + 116 + + + BICOMP + 89 + + + + + + Release + + + [MULTI_TOOL] + ILINK + + + [REBUILD_ALL] diff --git a/bsp/fm3/fm3_easy_kit.ewd b/bsp/fm3/fm3_easy_kit.ewd index 343f72b4b06a2a877bcd560b0317c3d8af40bdb4..17e2f3f9d0edf59afffb566c59350a961f73ac0a 100644 --- a/bsp/fm3/fm3_easy_kit.ewd +++ b/bsp/fm3/fm3_easy_kit.ewd @@ -45,7 +45,7 @@