提交 73656d53 编写于 作者: D dzzxzz

update FM3 easy kit IAR project

if define RT_USING_RTGUI in rtconfig.h
must be compiled by full edition of IAR Embedded Workbench
else
can be compiled by 32KB KickStart edition 

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1377 bbd45198-f89e-11dd-88c7-29a3b14d5316
上级 c84fc537
......@@ -14,13 +14,16 @@
#include <rtthread.h>
#include <rthw.h>
#include <rtgui/event.h>
#include <rtgui/rtgui_server.h>
#include <rtgui/rtgui_system.h>
#include "mb9bf506r.h"
#include "adc.h"
#include "led.h"
#include "lcd.h"
#ifdef RT_USING_RTGUI
#include <rtgui/event.h>
#include <rtgui/rtgui_server.h>
#include <rtgui/rtgui_system.h>
#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);
}
}
......
......@@ -20,21 +20,22 @@
#include <rtthread.h>
#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 <rtgui/rtgui.h>
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);
......
#include <rtthread.h>
#include <rthw.h>
#include "cpuusage.h"
#include "lcd.h"
#ifdef RT_USING_RTGUI
#include <rtgui/event.h>
#include <rtgui/rtgui_server.h>
#include <rtgui/rtgui_system.h>
#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);
}
}
......
......@@ -2,51 +2,155 @@
<project>
<fileVersion>2</fileVersion>
<fileChecksum>65142411</fileChecksum>
<fileChecksum>2160502631</fileChecksum>
<configuration>
<name>Debug</name>
<outputs>
<file>$PROJ_DIR$\Debug\Obj\label.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\hz16font.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\font_hz_bmp.o</file>
<file>$PROJ_DIR$\Debug\Obj\image_container.o</file>
<file>$PROJ_DIR$\Debug\Obj\hz16font.o</file>
<file>$PROJ_DIR$\Debug\Obj\cpuusage.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\key.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\lcd.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\led.pbi</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\toplevel.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\rtgui_object.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\rtgui.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\label.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\region.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\color.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\rtgui_config.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\widget.h</file>
<file>$PROJ_DIR$\Debug\Obj\image_xpm.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\listbox.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\list_view.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\menu.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\dc_hw.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\dc_buffer.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\dc_client.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\menu.o</file>
<file>$PROJ_DIR$\Debug\Obj\mouse.o</file>
<file>$PROJ_DIR$\Debug\Obj\notebook.o</file>
<file>$PROJ_DIR$\Debug\Obj\panel.o</file>
<file>$PROJ_DIR$\Debug\Obj\radiobox.o</file>
<file>$PROJ_DIR$\Debug\Obj\rtgui_object.o</file>
<file>$PROJ_DIR$\Debug\Obj\region.o</file>
<file>$PROJ_DIR$\Debug\Obj\title.o</file>
<file>$PROJ_DIR$\Debug\Obj\rtgui_system.o</file>
<file>$PROJ_DIR$\Debug\Obj\info.o</file>
<file>$PROJ_DIR$\Debug\Obj\rtgui_xml.o</file>
<file>$PROJ_DIR$\Debug\Obj\rtgui_theme.o</file>
<file>$PROJ_DIR$\Debug\Obj\rtgui_xml.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\scrollbar.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\slider.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\textbox.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\staticline.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\title.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\topwin.pbi</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\driver.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\list.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\window.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\rtgui_server.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\blit.h</file>
<file>$PROJ_DIR$\Debug\Obj\listctrl.pbi</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\event.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\kbddef.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\image.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\rtgui_theme.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\button.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\font.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\tree.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\dc.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\iconbox.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\checkbox.h</file>
<file>$PROJ_DIR$\Debug\Obj\image.pbi</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\radiobox.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\filerw.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\textbox.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\slider.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\scrollbar.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\progressbar.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\staticline.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\about_view.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\view.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\rtgui_system.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\box.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\container.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\listbox.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\image_hdc.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\combobox.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\font_freetype.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\workbench.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\filelist_view.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\image_container.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\title.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\image_xpm.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\dc_hw.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\rtgui_xml.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\dc_client.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\list_view.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\image_bmp.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\menu.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\listctrl.h</file>
<file>$PROJ_DIR$\Debug\Obj\ipc.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\mempool.o</file>
<file>$PROJ_DIR$\Debug\Obj\board.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\module.o</file>
<file>$PROJ_DIR$\Debug\Obj\cpuport.o</file>
<file>$PROJ_DIR$\Debug\Obj\clock.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\irq.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\object.o</file>
<file>$PROJ_DIR$\Debug\Obj\device.pbi</file>
<file>$PROJ_DIR$\..\..\include\rthw.h</file>
<file>$PROJ_DIR$\Debug\Obj\slab.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\core_cm3.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\slab.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\mem.o</file>
<file>$PROJ_DIR$\..\..\components\rtgui\include\rtgui\widgets\notebook.h</file>
<file>$PROJ_DIR$\Debug\Obj\cpuport.o</file>
<file>$PROJ_DIR$\Debug\Obj\system_mb9bf50x.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\kservice.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\idle.o</file>
<file>$PROJ_DIR$\Debug\Obj\kservice.pbi</file>
<file>$PROJ_DIR$\..\..\include\rtthread.h</file>
<file>$PROJ_DIR$\Debug\Obj\timer.o</file>
<file>$PROJ_DIR$\Debug\Obj\rtm.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\scrollbar.o</file>
<file>$PROJ_DIR$\Debug\Obj\rtgui_object.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\rtgui_system.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\rtgui_theme.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\led.o</file>
<file>$PROJ_DIR$\Debug\Obj\about_view.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\blit.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\asc12font.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\asc16font.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\box.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\button.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\color.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\checkbox.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\dc.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\combobox.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\container.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\core_cm3.o</file>
<file>$PROJ_DIR$\Debug\Obj\start_iar.o</file>
<file>$PROJ_DIR$\CMSIS\mb9bf506r.h</file>
<file>$PROJ_DIR$\Debug\Obj\application.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\board.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\module.o</file>
<file>$PROJ_DIR$\Debug\Obj\device.pbi</file>
<file>$PROJ_DIR$\..\..\include\rtm.h</file>
<file>$PROJ_DIR$\Debug\Obj\kservice.o</file>
<file>$PROJ_DIR$\..\..\include\rthw.h</file>
<file>$PROJ_DIR$\Debug\Obj\application.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\board.o</file>
<file>$PROJ_DIR$\..\..\src\kservice.h</file>
<file>$PROJ_DIR$\Debug\Obj\object.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\module.pbi</file>
<file>$PROJ_DIR$\Debug\Exe\fm3_easy_kit.out</file>
<file>$PROJ_DIR$\Debug\Obj\clock.o</file>
<file>$PROJ_DIR$\Debug\Obj\irq.o</file>
<file>$PROJ_DIR$\..\..\src\kservice.h</file>
<file>$PROJ_DIR$\Debug\Obj\clock.o</file>
<file>$PROJ_DIR$\Debug\Exe\fm3_easy_kit.out</file>
<file>$PROJ_DIR$\CMSIS\core_cm3.h</file>
<file>$PROJ_DIR$\Debug\Obj\system_mb9bf50x.o</file>
<file>$PROJ_DIR$\Debug\Obj\cpuport.pbi</file>
<file>$PROJ_DIR$\CMSIS\core_cm3.h</file>
<file>$PROJ_DIR$\Debug\Obj\rtm.o</file>
<file>$PROJ_DIR$\Debug\Obj\thread.pbi</file>
<file>$PROJ_DIR$\board.h</file>
<file>$PROJ_DIR$\Debug\Obj\fm3_easy_kit.pbd</file>
<file>$PROJ_DIR$\Debug\Obj\thread.o</file>
<file>$PROJ_DIR$\Debug\Obj\image_bmp.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\image_container.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\list_view.o</file>
<file>$PROJ_DIR$\Debug\Obj\hz12font.o</file>
<file>$PROJ_DIR$\Debug\Obj\startup.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\thread.o</file>
<file>$PROJ_DIR$\Debug\Obj\fm3_easy_kit.pbd</file>
<file>$PROJ_DIR$\Debug\Obj\slab.o</file>
<file>$PROJ_DIR$\Debug\Obj\device.o</file>
<file>$PROJ_DIR$\Debug\Obj\timer.pbi</file>
......@@ -55,29 +159,173 @@
<file>$PROJ_DIR$\Debug\Obj\ipc.o</file>
<file>$PROJ_DIR$\Debug\Obj\scheduler.o</file>
<file>$PROJ_DIR$\rtconfig.h</file>
<file>$PROJ_DIR$\Debug\Obj\font_freetype.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\font_hz_bmp.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\font_hz_file.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\hz12font.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\label.o</file>
<file>$PROJ_DIR$\Debug\Obj\listbox.o</file>
<file>$PROJ_DIR$\Debug\Obj\clock.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\font_hz_file.o</file>
<file>$PROJ_DIR$\CMSIS\core_cmFunc.h</file>
<file>$PROJ_DIR$\CMSIS\core_cmInstr.h</file>
<file>$PROJ_DIR$\CMSIS\system_mb9bf50x.h</file>
<file>$PROJ_DIR$\..\..\include\rtdef.h</file>
<file>$PROJ_DIR$\Debug\Obj\mem.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\context_iar.o</file>
<file>$PROJ_DIR$\Debug\Obj\startup.o</file>
<file>$PROJ_DIR$\CMSIS\core_cmInstr.h</file>
<file>$PROJ_DIR$\..\..\include\rtdef.h</file>
<file>$PROJ_DIR$\Debug\Obj\context_iar.o</file>
<file>$PROJ_DIR$\Debug\Obj\fault_iar.o</file>
<file>$PROJ_DIR$\Debug\Obj\scheduler.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\application.o</file>
<file>$PROJ_DIR$\CMSIS\core_cm3.c</file>
<file>$PROJ_DIR$\CMSIS\system_mb9bf50x.c</file>
<file>$PROJ_DIR$\Debug\Obj\filelist_view.o</file>
<file>$PROJ_DIR$\Debug\Obj\filerw.o</file>
<file>$PROJ_DIR$\Debug\Obj\dc_client.o</file>
<file>$PROJ_DIR$\Debug\Obj\dc_hw.o</file>
<file>$PROJ_DIR$\Debug\Obj\driver.o</file>
<file>$PROJ_DIR$\Debug\Obj\font_bmp.o</file>
<file>$PROJ_DIR$\Debug\Obj\font.o</file>
<file>$PROJ_DIR$\Debug\Obj\asc16font.o</file>
<file>$PROJ_DIR$\Debug\Obj\asc12font.o</file>
<file>$PROJ_DIR$\Debug\Obj\dc_buffer.o</file>
<file>$PROJ_DIR$\Debug\Obj\dc.o</file>
<file>$PROJ_DIR$\Debug\Obj\about_view.o</file>
<file>$PROJ_DIR$\Debug\Obj\blit.o</file>
<file>$PROJ_DIR$\Debug\Obj\box.o</file>
<file>$PROJ_DIR$\Debug\Obj\button.o</file>
<file>$PROJ_DIR$\Debug\Obj\checkbox.o</file>
<file>$PROJ_DIR$\Debug\Obj\color.o</file>
<file>$PROJ_DIR$\Debug\Obj\combobox.o</file>
<file>$PROJ_DIR$\Debug\Obj\container.o</file>
<file>$PROJ_DIR$\Debug\Obj\font_freetype.o</file>
<file>$PROJ_DIR$\Debug\Obj\image_jpg.o</file>
<file>$PROJ_DIR$\Debug\Obj\image_png.o</file>
<file>$PROJ_DIR$\Debug\Obj\image_xpm.o</file>
<file>$PROJ_DIR$\Debug\Obj\irq.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\object.o</file>
<file>$PROJ_DIR$\Debug\Obj\mempool.o</file>
<file>$PROJ_DIR$\Debug\Obj\image.o</file>
<file>$PROJ_DIR$\Debug\Obj\image_bmp.o</file>
<file>$PROJ_DIR$\Debug\Obj\image_hdc.o</file>
<file>$PROJ_DIR$\Debug\Obj\progressbar.o</file>
<file>$PROJ_DIR$\Debug\Obj\adc.o</file>
<file>$PROJ_DIR$\Debug\Obj\slider.o</file>
<file>$PROJ_DIR$\Debug\Obj\server.o</file>
<file>$PROJ_DIR$\Debug\Obj\textbox.o</file>
<file>$PROJ_DIR$\Debug\Obj\staticline.o</file>
<file>$PROJ_DIR$\Debug\Obj\toplevel.o</file>
<file>$PROJ_DIR$\Debug\Obj\topwin.o</file>
<file>$PROJ_DIR$\Debug\Obj\view.o</file>
<file>$PROJ_DIR$\Debug\Obj\widget.o</file>
<file>$PROJ_DIR$\Debug\Obj\window.o</file>
<file>$PROJ_DIR$\Debug\Obj\workbench.o</file>
<file>$PROJ_DIR$\Debug\Obj\cpuusage.o</file>
<file>$PROJ_DIR$\Debug\Obj\key.o</file>
<file>$PROJ_DIR$\Debug\Obj\lcd.o</file>
<file>$PROJ_DIR$\Debug\Obj\iconbox.o</file>
<file>$PROJ_DIR$\Debug\Obj\driver.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\filerw.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\panel.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\mouse.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\notebook.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\region.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\progressbar.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\radiobox.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\server.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\image_hdc.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\image_jpg.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\image_png.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\adc.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\workbench.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\info.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\listctrl.o</file>
<file>$PROJ_DIR$\Debug\Obj\filelist_view.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\font.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\iconbox.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\font_bmp.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\toplevel.pbi</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\font_hz_file.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\font_hz_bmp.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\hz12font.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\hz16font.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\iconbox.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\image.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\image_bmp.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\image_container.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\image_jpg.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\image_hdc.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\image_png.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\image_xpm.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\label.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\list_view.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\listbox.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\listctrl.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\menu.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\server\mouse.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\server\mouse.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\notebook.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\server\panel.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\server\panel.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\progressbar.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\asc12font.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\asc16font.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\blit.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\box.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\button.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\checkbox.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\color.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\combobox.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\container.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\dc.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\dc_buffer.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\dc_client.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\dc_hw.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\server\driver.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\filelist_view.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\font.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\filerw.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\font_bmp.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\font_freetype.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\radiobox.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\region.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\rtgui_object.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\rtgui_system.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\rtgui_theme.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\common\rtgui_xml.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\scrollbar.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\server\server.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\slider.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\staticline.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\textbox.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\title.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\toplevel.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\server\topwin.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\server\topwin.h</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\view.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\widget.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\window.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\workbench.c</file>
<file>$PROJ_DIR$\application.c</file>
<file>$PROJ_DIR$\adc.c</file>
<file>$PROJ_DIR$\board.c</file>
<file>$PROJ_DIR$\cpuusage.c</file>
<file>$PROJ_DIR$\startup.c</file>
<file>$PROJ_DIR$\key.c</file>
<file>$PROJ_DIR$\info.c</file>
<file>$PROJ_DIR$\lcd.c</file>
<file>$PROJ_DIR$\led.c</file>
<file>$PROJ_DIR$\Debug\Obj\view.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\widget.pbi</file>
<file>$PROJ_DIR$\Debug\Obj\window.pbi</file>
<file>$PROJ_DIR$\..\..\libcpu\arm\fm3\context_iar.S</file>
<file>$PROJ_DIR$\..\..\libcpu\arm\fm3\cpuport.c</file>
<file>$PROJ_DIR$\..\..\libcpu\arm\fm3\fault_iar.S</file>
<file>$PROJ_DIR$\CMSIS\system_mb9bf50x.c</file>
<file>$PROJ_DIR$\..\..\libcpu\arm\fm3\start_iar.S</file>
<file>$PROJ_DIR$\..\..\src\clock.c</file>
<file>$PROJ_DIR$\..\..\src\device.c</file>
<file>$PROJ_DIR$\..\..\src\idle.c</file>
<file>$PROJ_DIR$\..\..\src\ipc.c</file>
<file>$PROJ_DIR$\..\..\src\irq.c</file>
<file>$PROJ_DIR$\..\..\src\kservice.c</file>
<file>$PROJ_DIR$\..\..\src\mem.c</file>
<file>$PROJ_DIR$\..\..\src\kservice.c</file>
<file>$PROJ_DIR$\..\..\src\mempool.c</file>
<file>$PROJ_DIR$\..\..\src\module.c</file>
<file>$PROJ_DIR$\..\..\src\object.c</file>
......@@ -86,169 +334,254 @@
<file>$PROJ_DIR$\..\..\src\slab.c</file>
<file>$PROJ_DIR$\..\..\src\thread.c</file>
<file>$PROJ_DIR$\..\..\src\timer.c</file>
<file>$PROJ_DIR$\application.c</file>
<file>$PROJ_DIR$\board.c</file>
<file>$PROJ_DIR$\startup.c</file>
<file>$PROJ_DIR$\..\..\components\rtgui\widgets\about_view.c</file>
<file>$PROJ_DIR$\..\..\libcpu\arm\fm3\cpuport.c</file>
<file>$PROJ_DIR$\..\..\libcpu\arm\fm3\fault_iar.S</file>
<file>$PROJ_DIR$\CMSIS\core_cm3.c</file>
</outputs>
<file>
<name>[ROOT_NODE]</name>
<outputs>
<tool>
<name>ILINK</name>
<file> 29</file>
<file> 132</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\Debug\Obj\fm3_easy_kit.pbd</name>
<name>$PROJ_DIR$\..\..\components\rtgui\common\font_hz_file.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 160</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 155</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BILINK</name>
<file> 22 2 5 11 33 8 45 0 6 14 52 44 28 27 18 57 10 40 13 36 43</file>
<name>BICOMP</name>
<file> 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 69</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\CMSIS\core_cm3.c</name>
<name>$PROJ_DIR$\..\..\components\rtgui\common\font_hz_bmp.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 19</file>
<file> 2</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 11</file>
<file> 154</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\CMSIS\system_mb9bf50x.c</name>
<name>$PROJ_DIR$\..\..\components\rtgui\common\hz12font.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 32</file>
<file> 141</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 13</file>
<file> 156</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 21 34 55 49 50</file>
<file> 54 11 97 166 152 15 10 44 55</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\libcpu\arm\fm3\context_iar.S</name>
<name>$PROJ_DIR$\..\..\components\rtgui\common\hz16font.c</name>
<outputs>
<tool>
<name>AARM</name>
<file> 53</file>
<name>ICCARM</name>
<file> 4</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 1</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 54 11 97 166 152 15 10 44 55</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\libcpu\arm\fm3\cpuport.c</name>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\iconbox.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 4</file>
<file> 215</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 33</file>
<file> 234</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 9 16 51 48 21 34 55 49 50</file>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\libcpu\arm\fm3\fault_iar.S</name>
<name>$PROJ_DIR$\..\..\components\rtgui\common\image.c</name>
<outputs>
<tool>
<name>AARM</name>
<file> 56</file>
<name>ICCARM</name>
<file> 197</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 59</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 97 166 152 51 56 11 15 10 54 44 55 43 14 16 13 49 50 61 73 69 78</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\libcpu\arm\fm3\start_iar.S</name>
<name>$PROJ_DIR$\..\..\components\rtgui\common\image_bmp.c</name>
<outputs>
<tool>
<name>AARM</name>
<file> 20</file>
<name>ICCARM</name>
<file> 198</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 138</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 97 166 152 81 56 11 15 10 54 44 55 43 14 16 13 49 50 51 61 69 85 47</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\clock.c</name>
<name>$PROJ_DIR$\..\..\components\rtgui\common\image_container.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 30</file>
<file> 3</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 5</file>
<file> 139</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 16 51 48</file>
<file> 78 11 97 166 152 15 10 51 56 54 44 55 43 14 16 13 49 50 61</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\device.c</name>
<name>$PROJ_DIR$\..\..\components\rtgui\common\image_jpg.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 42</file>
<file> 191</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 8</file>
<file> 226</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 16 51 48 26</file>
<file> 97 166 152 11 15 10</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\idle.c</name>
<name>$PROJ_DIR$\..\..\components\rtgui\common\image_hdc.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 15</file>
<file> 199</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 45</file>
<file> 225</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 9 16 51 48 26</file>
<file> 97 166 152 81 56 11 15 10 54 44 55 43 14 16 13 49 50 51 61 69 73</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\ipc.c</name>
<name>$PROJ_DIR$\..\..\components\rtgui\common\image_png.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 192</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 227</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 97 166 152 69 11 15 10</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\common\image_xpm.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 193</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 17</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 61 11 97 166 152 15 10 80 51 56 54 44 55 43 14 16 13 49 50 69</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\label.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 46</file>
<file> 157</file>
</tool>
<tool>
<name>BICOMP</name>
......@@ -258,283 +591,1338 @@
<inputs>
<tool>
<name>BICOMP</name>
<file> 16 51 48 9 26</file>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\irq.c</name>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\list_view.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 31</file>
<file> 140</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 6</file>
<file> 19</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 9 16 51 48</file>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\kservice.c</name>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\listbox.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 24</file>
<file> 158</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 14</file>
<file> 18</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 16 51 48 9</file>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\mem.c</name>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\listctrl.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 12</file>
<file> 231</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 52</file>
<file> 48</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 16 51 48</file>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\mempool.c</name>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\menu.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 1</file>
<file> 24</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 44</file>
<file> 20</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 9 16 51 48 26</file>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\module.c</name>
<name>$PROJ_DIR$\..\..\components\rtgui\server\mouse.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 3</file>
<file> 25</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 28</file>
<file> 219</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 16 51 48 23 26</file>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\object.c</name>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\notebook.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 7</file>
<file> 26</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 220</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 69 92 71</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\server\panel.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 27</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 218</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 16 51 48 9 26</file>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\rtm.c</name>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\progressbar.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 35</file>
<file> 200</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 18</file>
<file> 222</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 16 51 48</file>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\scheduler.c</name>
<name>$PROJ_DIR$\..\..\components\rtgui\common\asc12font.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 47</file>
<file> 179</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 57</file>
<file> 107</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 16 51 48 9 26</file>
<file> 54 11 97 166 152 15 10 44 55</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\slab.c</name>
<name>$PROJ_DIR$\..\..\components\rtgui\common\asc16font.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 41</file>
<file> 178</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 10</file>
<file> 108</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 9 16 51 48 26</file>
<file> 54 11 97 166 152 15 10 44 55</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\thread.c</name>
<name>$PROJ_DIR$\..\..\components\rtgui\common\blit.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 39</file>
<file> 183</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 36</file>
<file> 106</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 16 51 48 9 26</file>
<file> 11 97 166 152 15 10 47</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\timer.c</name>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\box.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 17</file>
<file> 184</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 43</file>
<file> 109</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 16 51 48 9 26</file>
<file> 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 70 71</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\application.c</name>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\button.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 58</file>
<file> 185</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 22</file>
<file> 110</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 16 51 48 37 21 34 55 49 50</file>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\board.c</name>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\checkbox.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 25</file>
<file> 186</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 2</file>
<file> 112</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 9 16 51 48 37 21 34 55 49 50</file>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\startup.c</name>
<name>$PROJ_DIR$\..\..\components\rtgui\common\color.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 54</file>
<file> 187</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 40</file>
<file> 111</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 9 16 51 48 37 21 34 55 49 50</file>
<file> 14 11 97 166 152 15 10</file>
</tool>
</inputs>
</file>
</configuration>
<configuration>
<name>Release</name>
<outputs/>
<forcedrebuild>
<name>[MULTI_TOOL]</name>
<tool>ILINK</tool>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\combobox.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 188</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 114</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\container.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 189</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 115</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 9 71 16 11 97 166 152 15 10 44 13 49 50 14 54 55</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\common\dc.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 181</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 113</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50 69</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\common\dc_buffer.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 180</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 22</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 11 97 166 152 15 10 56 54 44 55 43 14 16 13 49 50 47 81 69</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\common\dc_client.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 173</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 23</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\common\dc_hw.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 174</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 21</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\server\driver.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 175</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 216</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 43 44 11 97 166 152 15 10 14</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\filelist_view.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 171</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 232</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\common\font.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 177</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 233</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 54 11 97 166 152 15 10 44 55 56 43 14 16 13 49 50</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\common\filerw.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 172</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 217</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 61 11 97 166 152 15 10 69</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\common\font_bmp.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 176</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 235</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 54 11 97 166 152 15 10 44 55 56 43 14 16 13 49 50</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\common\font_freetype.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 190</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 153</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 75 56 11 97 166 152 15 10 54 44 55 43 14 16 13 49 50</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\radiobox.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 28</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 223</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\common\region.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 30</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 221</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 13 11 97 166 152 15 10 69</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\common\rtgui_object.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 29</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 101</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 10 97 166 152 69 11 15</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\common\rtgui_system.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 32</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 102</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\common\rtgui_theme.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 35</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 103</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\common\rtgui_xml.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 34</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 36</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 82 11 97 166 152 15 10 69</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\scrollbar.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 100</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 37</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\server\server.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 203</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 224</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\slider.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 202</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 38</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\staticline.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 205</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 40</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\textbox.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 204</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 39</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\title.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 31</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 41</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 79 9 71 16 11 97 166 152 15 10 44 13 49 50 14 54 55 69</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\toplevel.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 206</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 236</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\server\topwin.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 207</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 42</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\view.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 208</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 307</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\widget.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 209</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 308</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\window.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 210</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 309</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\workbench.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 211</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 229</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\application.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 170</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 125</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\adc.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 201</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 228</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\board.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 126</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 119</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\cpuusage.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 212</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 5</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\startup.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 165</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 142</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\key.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 213</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 6</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\info.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 33</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 230</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\lcd.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 214</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 7</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\led.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 104</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 8</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\libcpu\arm\fm3\context_iar.S</name>
<outputs>
<tool>
<name>AARM</name>
<file> 167</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\CMSIS\system_mb9bf50x.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 134</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 94</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 118 133 162 161 163</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\libcpu\arm\fm3\start_iar.S</name>
<outputs>
<tool>
<name>AARM</name>
<file> 117</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\clock.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 131</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 159</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 97 166 152</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\device.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 146</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 121</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 97 166 152 130</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\idle.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 95</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 149</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 124 97 166 152 130</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\ipc.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 150</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 88</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 97 166 152 124 130</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\irq.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 129</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 194</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 124 97 166 152</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\mem.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 91</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 164</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 97 166 152</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\kservice.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 123</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 96</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 97 166 152 124</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\mempool.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 196</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 148</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 124 97 166 152 130</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\module.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 120</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 128</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 97 166 152 122 130</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\object.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 195</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 127</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 97 166 152 124 130</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\rtm.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 136</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 99</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 97 166 152</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\scheduler.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 151</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 169</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 97 166 152 124 130</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\slab.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 145</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 90</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 124 97 166 152 130</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\thread.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 143</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 137</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 97 166 152 124 130</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\src\timer.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 98</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 147</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 97 166 152 124 130</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\components\rtgui\widgets\about_view.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 182</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 105</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 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</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\libcpu\arm\fm3\cpuport.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 93</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 135</file>
</tool>
</outputs>
<inputs>
<tool>
<name>BICOMP</name>
<file> 124 97 166 152 118 133 162 161 163</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\..\libcpu\arm\fm3\fault_iar.S</name>
<outputs>
<tool>
<name>AARM</name>
<file> 168</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\CMSIS\core_cm3.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 116</file>
</tool>
<tool>
<name>BICOMP</name>
<file> 89</file>
</tool>
</outputs>
</file>
</configuration>
<configuration>
<name>Release</name>
<outputs/>
<forcedrebuild>
<name>[MULTI_TOOL]</name>
<tool>ILINK</tool>
</forcedrebuild>
<forcedrebuild>
<name>[REBUILD_ALL]</name>
</forcedrebuild>
</configuration>
</project>
......
......@@ -45,7 +45,7 @@
</option>
<option>
<name>MemFile</name>
<state>$TOOLKIT_DIR$\CONFIG\debugger\Fujitsu\iomb9bf506.ddf</state>
<state></state>
</option>
<option>
<name>RunToEnable</name>
......@@ -117,7 +117,7 @@
</option>
<option>
<name>FlashLoadersV3</name>
<state>$TOOLKIT_DIR$\config\flashloader\Fujitsu\MB9BF506.board</state>
<state>$TOOLKIT_DIR$\config\flashloader\</state>
</option>
<option>
<name>OCImagesSuppressCheck1</name>
......
......@@ -39,20 +39,20 @@
<option>
<name>Input variant</name>
<version>1</version>
<state>3</state>
<state>0</state>
</option>
<option>
<name>Input description</name>
<state>No specifier n, no float nor long long, no scan set, no assignment suppressing.</state>
<state>Full formatting.</state>
</option>
<option>
<name>Output variant</name>
<version>0</version>
<state>3</state>
<state>0</state>
</option>
<option>
<name>Output description</name>
<state>No specifier a, A, no specifier n, no float nor long long, no flags.</state>
<state>Full formatting.</state>
</option>
<option>
<name>GOutputBinary</name>
......
#ifndef __FONT_H
#define __FONT_H
/* Font definition */
#define ________ 0x00
#define _______X 0x01
#define ______X_ 0x02
#define ______XX 0x03
#define _____X__ 0x04
#define _____X_X 0x05
#define _____XX_ 0x06
#define _____XXX 0x07
#define ____X___ 0x08
#define ____X__X 0x09
#define ____X_X_ 0x0a
#define ____X_XX 0x0b
#define ____XX__ 0x0c
#define ____XX_X 0x0d
#define ____XXX_ 0x0e
#define ____XXXX 0x0f
#define ___X____ 0x10
#define ___X___X 0x11
#define ___X__X_ 0x12
#define ___X__XX 0x13
#define ___X_X__ 0x14
#define ___X_X_X 0x15
#define ___X_XX_ 0x16
#define ___X_XXX 0x17
#define ___XX___ 0x18
#define ___XX__X 0x19
#define ___XX_X_ 0x1a
#define ___XX_XX 0x1b
#define ___XXX__ 0x1c
#define ___XXX_X 0x1d
#define ___XXXX_ 0x1e
#define ___XXXXX 0x1f
#define __X_____ 0x20
#define __X____X 0x21
#define __X___X_ 0x22
#define __X___XX 0x23
#define __X__X__ 0x24
#define __X__X_X 0x25
#define __X__XX_ 0x26
#define __X__XXX 0x27
#define __X_X___ 0x28
#define __X_X__X 0x29
#define __X_X_X_ 0x2a
#define __X_X_XX 0x2b
#define __X_XX__ 0x2c
#define __X_XX_X 0x2d
#define __X_XXX_ 0x2e
#define __X_XXXX 0x2f
#define __XX____ 0x30
#define __XX___X 0x31
#define __XX__X_ 0x32
#define __XX__XX 0x33
#define __XX_X__ 0x34
#define __XX_X_X 0x35
#define __XX_XX_ 0x36
#define __XX_XXX 0x37
#define __XXX___ 0x38
#define __XXX__X 0x39
#define __XXX_X_ 0x3a
#define __XXX_XX 0x3b
#define __XXXX__ 0x3c
#define __XXXX_X 0x3d
#define __XXXXX_ 0x3e
#define __XXXXXX 0x3f
#define _X______ 0x40
#define _X_____X 0x41
#define _X____X_ 0x42
#define _X____XX 0x43
#define _X___X__ 0x44
#define _X___X_X 0x45
#define _X___XX_ 0x46
#define _X___XXX 0x47
#define _X__X___ 0x48
#define _X__X__X 0x49
#define _X__X_X_ 0x4a
#define _X__X_XX 0x4b
#define _X__XX__ 0x4c
#define _X__XX_X 0x4d
#define _X__XXX_ 0x4e
#define _X__XXXX 0x4f
#define _X_X____ 0x50
#define _X_X___X 0x51
#define _X_X__X_ 0x52
#define _X_X__XX 0x53
#define _X_X_X__ 0x54
#define _X_X_X_X 0x55
#define _X_X_XX_ 0x56
#define _X_X_XXX 0x57
#define _X_XX___ 0x58
#define _X_XX__X 0x59
#define _X_XX_X_ 0x5a
#define _X_XX_XX 0x5b
#define _X_XXX__ 0x5c
#define _X_XXX_X 0x5d
#define _X_XXXX_ 0x5e
#define _X_XXXXX 0x5f
#define _XX_____ 0x60
#define _XX____X 0x61
#define _XX___X_ 0x62
#define _XX___XX 0x63
#define _XX__X__ 0x64
#define _XX__X_X 0x65
#define _XX__XX_ 0x66
#define _XX__XXX 0x67
#define _XX_X___ 0x68
#define _XX_X__X 0x69
#define _XX_X_X_ 0x6a
#define _XX_X_XX 0x6b
#define _XX_XX__ 0x6c
#define _XX_XX_X 0x6d
#define _XX_XXX_ 0x6e
#define _XX_XXXX 0x6f
#define _XXX____ 0x70
#define _XXX___X 0x71
#define _XXX__X_ 0x72
#define _XXX__XX 0x73
#define _XXX_X__ 0x74
#define _XXX_X_X 0x75
#define _XXX_XX_ 0x76
#define _XXX_XXX 0x77
#define _XXXX___ 0x78
#define _XXXX__X 0x79
#define _XXXX_X_ 0x7a
#define _XXXX_XX 0x7b
#define _XXXXX__ 0x7c
#define _XXXXX_X 0x7d
#define _XXXXXX_ 0x7e
#define _XXXXXXX 0x7f
#define X_______ 0x80
#define X______X 0x81
#define X_____X_ 0x82
#define X_____XX 0x83
#define X____X__ 0x84
#define X____X_X 0x85
#define X____XX_ 0x86
#define X____XXX 0x87
#define X___X___ 0x88
#define X___X__X 0x89
#define X___X_X_ 0x8a
#define X___X_XX 0x8b
#define X___XX__ 0x8c
#define X___XX_X 0x8d
#define X___XXX_ 0x8e
#define X___XXXX 0x8f
#define X__X____ 0x90
#define X__X___X 0x91
#define X__X__X_ 0x92
#define X__X__XX 0x93
#define X__X_X__ 0x94
#define X__X_X_X 0x95
#define X__X_XX_ 0x96
#define X__X_XXX 0x97
#define X__XX___ 0x98
#define X__XX__X 0x99
#define X__XX_X_ 0x9a
#define X__XX_XX 0x9b
#define X__XXX__ 0x9c
#define X__XXX_X 0x9d
#define X__XXXX_ 0x9e
#define X__XXXXX 0x9f
#define X_X_____ 0xa0
#define X_X____X 0xa1
#define X_X___X_ 0xa2
#define X_X___XX 0xa3
#define X_X__X__ 0xa4
#define X_X__X_X 0xa5
#define X_X__XX_ 0xa6
#define X_X__XXX 0xa7
#define X_X_X___ 0xa8
#define X_X_X__X 0xa9
#define X_X_X_X_ 0xaa
#define X_X_X_XX 0xab
#define X_X_XX__ 0xac
#define X_X_XX_X 0xad
#define X_X_XXX_ 0xae
#define X_X_XXXX 0xaf
#define X_XX____ 0xb0
#define X_XX___X 0xb1
#define X_XX__X_ 0xb2
#define X_XX__XX 0xb3
#define X_XX_X__ 0xb4
#define X_XX_X_X 0xb5
#define X_XX_XX_ 0xb6
#define X_XX_XXX 0xb7
#define X_XXX___ 0xb8
#define X_XXX__X 0xb9
#define X_XXX_X_ 0xba
#define X_XXX_XX 0xbb
#define X_XXXX__ 0xbc
#define X_XXXX_X 0xbd
#define X_XXXXX_ 0xbe
#define X_XXXXXX 0xbf
#define XX______ 0xc0
#define XX_____X 0xc1
#define XX____X_ 0xc2
#define XX____XX 0xc3
#define XX___X__ 0xc4
#define XX___X_X 0xc5
#define XX___XX_ 0xc6
#define XX___XXX 0xc7
#define XX__X___ 0xc8
#define XX__X__X 0xc9
#define XX__X_X_ 0xca
#define XX__X_XX 0xcb
#define XX__XX__ 0xcc
#define XX__XX_X 0xcd
#define XX__XXX_ 0xce
#define XX__XXXX 0xcf
#define XX_X____ 0xd0
#define XX_X___X 0xd1
#define XX_X__X_ 0xd2
#define XX_X__XX 0xd3
#define XX_X_X__ 0xd4
#define XX_X_X_X 0xd5
#define XX_X_XX_ 0xd6
#define XX_X_XXX 0xd7
#define XX_XX___ 0xd8
#define XX_XX__X 0xd9
#define XX_XX_X_ 0xda
#define XX_XX_XX 0xdb
#define XX_XXX__ 0xdc
#define XX_XXX_X 0xdd
#define XX_XXXX_ 0xde
#define XX_XXXXX 0xdf
#define XXX_____ 0xe0
#define XXX____X 0xe1
#define XXX___X_ 0xe2
#define XXX___XX 0xe3
#define XXX__X__ 0xe4
#define XXX__X_X 0xe5
#define XXX__XX_ 0xe6
#define XXX__XXX 0xe7
#define XXX_X___ 0xe8
#define XXX_X__X 0xe9
#define XXX_X_X_ 0xea
#define XXX_X_XX 0xeb
#define XXX_XX__ 0xec
#define XXX_XX_X 0xed
#define XXX_XXX_ 0xee
#define XXX_XXXX 0xef
#define XXXX____ 0xf0
#define XXXX___X 0xf1
#define XXXX__X_ 0xf2
#define XXXX__XX 0xf3
#define XXXX_X__ 0xf4
#define XXXX_X_X 0xf5
#define XXXX_XX_ 0xf6
#define XXXX_XXX 0xf7
#define XXXXX___ 0xf8
#define XXXXX__X 0xf9
#define XXXXX_X_ 0xfa
#define XXXXX_XX 0xfb
#define XXXXXX__ 0xfc
#define XXXXXX_X 0xfd
#define XXXXXXX_ 0xfe
#define XXXXXXXX 0xff
const unsigned char FONTTYPE8_8[][8] = {
/* blank */
{
________,
________,
________,
________,
________,
________,
________,
________}
/* 0 */
,{
__XXX___,
_XX_XX__,
XX___XX_,
XX___XX_,
XX___XX_,
_XX_XX__,
__XXX___,
________}
/* 1 */
,{
___XX___,
__XXX___,
___XX___,
___XX___,
___XX___,
___XX___,
_XXXXXX_,
________}
/* 2 */
,{
_XXXXX__,
XX___XX_,
_____XX_,
___XXX__,
__XX____,
_XX__XX_,
XXXXXXX_,
________}
/* 3 */
,{
_XXXXX__,
XX___XX_,
_____XX_,
__XXXX__,
_____XX_,
XX___XX_,
_XXXXX__,
________}
/* 4 */
,{
___XXX__,
__XXXX__,
_XX_XX__,
XX__XX__,
XXXXXXX_,
____XX__,
___XXXX_,
________}
/* 5 */
,{
XXXXXXX_,
XX______,
XX______,
XXXXXX__,
_____XX_,
XX___XX_,
_XXXXX__,
________}
/* 6 */
,{
__XXX___,
_XX_____,
XX______,
XXXXXX__,
XX___XX_,
XX___XX_,
_XXXXX__,
________}
/* 7 */
,{
XXXXXXX_,
XX___XX_,
____XX__,
___XX___,
__XX____,
__XX____,
__XX____,
________}
/* 8 */
,{
_XXXXX__,
XX___XX_,
XX___XX_,
_XXXXX__,
XX___XX_,
XX___XX_,
_XXXXX__,
________}
/* 9 */
,{
_XXXXX__,
XX___XX_,
XX___XX_,
_XXXXXX_,
_____XX_,
____XX__,
_XXXX___,
________}
/* A */
,{
__XXX___,
_XX_XX__,
XX___XX_,
XXXXXXX_,
XX___XX_,
XX___XX_,
XX___XX_,
________}
/* B */
,{
XXXXXX__,
_XX__XX_,
_XX__XX_,
_XXXXX__,
_XX__XX_,
_XX__XX_,
XXXXXX__,
________}
/* C */
,{
__XXXX__,
_XX__XX_,
XX______,
XX______,
XX______,
_XX__XX_,
__XXXX__,
________}
/* D */
,{
XXXXX___,
_XX_XX__,
_XX__XX_,
_XX__XX_,
_XX__XX_,
_XX_XX__,
XXXXX___,
________}
/* E */
,{
XXXXXXX_,
_XX___X_,
_XX_X___,
_XXXX___,
_XX_X___,
_XX___X_,
XXXXXXX_,
________}
/* F */
,{
XXXXXXX_,
_XX___X_,
_XX_X___,
_XXXX___,
_XX_X___,
_XX_____,
XXXX____,
________}
/* G */
,{
__XXXX__,
_XX__XX_,
XX______,
XX______,
XX__XXX_,
_XX__XX_,
__XXX_X_,
________}
/* H */
,{
XX___XX_,
XX___XX_,
XX___XX_,
XXXXXXX_,
XX___XX_,
XX___XX_,
XX___XX_,
________}
/* I */
,{
__XXXX__,
___XX___,
___XX___,
___XX___,
___XX___,
___XX___,
__XXXX__,
________}
/* J */
,{
___XXXX_,
____XX__,
____XX__,
____XX__,
XX__XX__,
XX__XX__,
_XXXX___,
________}
/* K */
,{
XXX__XX_,
_XX__XX_,
_XX_XX__,
_XXXX___,
_XX_XX__,
_XX__XX_,
XXX__XX_,
________}
/* L */
,{
XXXX____,
_XX_____,
_XX_____,
_XX_____,
_XX___X_,
_XX__XX_,
XXXXXXX_,
________}
/* M */
,{
XX___XX_,
XXX_XXX_,
XXXXXXX_,
XXXXXXX_,
XX_X_XX_,
XX___XX_,
XX___XX_,
________}
/* N */
,{
XX___XX_,
XXX__XX_,
XXXX_XX_,
XX_XXXX_,
XX__XXX_,
XX___XX_,
XX___XX_,
________}
/* O */
,{
_XXXXX__,
XX___XX_,
XX___XX_,
XX___XX_,
XX___XX_,
XX___XX_,
_XXXXX__,
________}
/* P */
,{
XXXXXX__,
_XX__XX_,
_XX__XX_,
_XXXXX__,
_XX_____,
_XX_____,
XXXX____,
________}
/* Q */
,{
_XXXXX__,
XX___XX_,
XX___XX_,
XX___XX_,
XX___XX_,
XX__XXX_,
_XXXXX__,
____XXX_}
/* R */
,{
XXXXXX__,
_XX__XX_,
_XX__XX_,
_XXXXX__,
_XX_XX__,
_XX__XX_,
XXX__XX_,
________}
/* S */
,{
__XXXX__,
_XX__XX_,
__XX____,
___XX___,
____XX__,
_XX__XX_,
__XXXX__,
________}
/* T */
,{
_XXXXXX_,
_XXXXXX_,
_X_XX_X_,
___XX___,
___XX___,
___XX___,
__XXXX__,
________}
/* U */
,{
XX___XX_,
XX___XX_,
XX___XX_,
XX___XX_,
XX___XX_,
XX___XX_,
_XXXXX__,
________}
/* V */
,{
XX___XX_,
XX___XX_,
XX___XX_,
XX___XX_,
XX___XX_,
_XX_XX__,
__XXX___,
________}
/* W */
,{
XX___XX_,
XX___XX_,
XX___XX_,
XX_X_XX_,
XX_X_XX_,
XXXXXXX_,
_XX_XX__,
________}
/* X */
,{
XX___XX_,
XX___XX_,
_XX_XX__,
__XXX___,
_XX_XX__,
XX___XX_,
XX___XX_,
________}
/* Y */
,{
_XX__XX_,
_XX__XX_,
_XX__XX_,
__XXXX__,
___XX___,
___XX___,
__XXXX__,
________}
/* Z */
,{
XXXXXXX_,
XX___XX_,
X___XX__,
___XX___,
__XX__X_,
_XX__XX_,
XXXXXXX_,
________}
/* a */
,{
________,
________,
_XXXX___,
____XX__,
_XXXXX__,
XX__XX__,
_XXX_XX_,
________}
/* b */
,{
XXX_____,
_XX_____,
_XXXXX__,
_XX__XX_,
_XX__XX_,
_XX__XX_,
XX_XXX__,
________}
/* c */
,{
________,
________,
_XXXXX__,
XX___XX_,
XX______,
XX___XX_,
_XXXXX__,
________}
/* d */
,{
___XXX__,
____XX__,
_XXXXX__,
XX__XX__,
XX__XX__,
XX__XX__,
_XXX_XX_,
________}
/* e */
,{
________,
________,
_XXXXX__,
XX___XX_,
XXXXXXX_,
XX______,
_XXXXX__,
________}
/* f */
,{
__XXXX__,
_XX__XX_,
_XX_____,
XXXXX___,
_XX_____,
_XX_____,
XXXX____,
________}
/* g */
,{
________,
________,
_XXX_XX_,
XX__XX__,
XX__XX__,
_XXXXX__,
____XX__,
XXXXX___}
/* h */
,{
XXX_____,
_XX_____,
_XX_XX__,
_XXX_XX_,
_XX__XX_,
_XX__XX_,
XXX__XX_,
________}
/* i */
,{
___XX___,
________,
__XXX___,
___XX___,
___XX___,
___XX___,
__XXXX__,
________}
/* j */
,{
_____XX_,
________,
_____XX_,
_____XX_,
_____XX_,
_XX__XX_,
_XX__XX_,
__XXXX__}
/* k */
,{
XXX_____,
_XX_____,
_XX__XX_,
_XX_XX__,
_XXXX___,
_XX_XX__,
XXX__XX_,
________}
/* l */
,{
__XXX___,
___XX___,
___XX___,
___XX___,
___XX___,
___XX___,
__XXXX__,
________}
/* m */
,{
________,
________,
XXX_XX__,
XXXXXXX_,
XX_X_XX_,
XX_X_XX_,
XX_X_XX_,
________}
/* n */
,{
________,
________,
XX_XXX__,
_XX__XX_,
_XX__XX_,
_XX__XX_,
_XX__XX_,
________}
/* o */
,{
________,
________,
_XXXXX__,
XX___XX_,
XX___XX_,
XX___XX_,
_XXXXX__,
________}
/* p */
,{
________,
________,
XX_XXX__,
_XX__XX_,
_XX__XX_,
_XXXXX__,
_XX_____,
XXXX____}
/* q */
,{
________,
________,
_XXX_XX_,
XX__XX__,
XX__XX__,
_XXXXX__,
____XX__,
___XXXX_}
/* r */
,{
________,
________,
XX_XXX__,
_XXX_XX_,
_XX_____,
_XX_____,
XXXX____,
________}
/* s */
,{
________,
________,
_XXXXXX_,
XX______,
_XXXXX__,
_____XX_,
XXXXXX__,
________}
/* t */
,{
__XX____,
__XX____,
XXXXXX__,
__XX____,
__XX____,
__XX_XX_,
___XXX__,
________}
/* u */
,{
________,
________,
XX__XX__,
XX__XX__,
XX__XX__,
XX__XX__,
_XXX_XX_,
________}
/* v */
,{
________,
________,
XX___XX_,
XX___XX_,
XX___XX_,
_XX_XX__,
__XXX___,
________}
/* w */
,{
________,
________,
XX___XX_,
XX_X_XX_,
XX_X_XX_,
XXXXXXX_,
_XX_XX__,
________}
/* x */
,{
________,
________,
XX___XX_,
_XX_XX__,
__XXX___,
_XX_XX__,
XX___XX_,
________}
/* y */
,{
________,
________,
XX___XX_,
XX___XX_,
XX___XX_,
_XXXXXX_,
_____XX_,
XXXXXX__}
/* z */
,{
________,
________,
_XXXXXX_,
_X__XX__,
___XX___,
__XX__X_,
_XXXXXX_,
________}
};
#endif /* __FONT_H */
\ No newline at end of file
......@@ -8,15 +8,18 @@
* http://www.rt-thread.org/license/LICENSE
*
* Change Logs:
* Date Author Notes
* Date Author Notes
* 2011-03-03 lgnq
*/
#include <rtthread.h>
#include "key.h"
#include "lcd.h"
#ifdef RT_USING_RTGUI
#include <rtgui/event.h>
#include <rtgui/rtgui_server.h>
#endif
static void key_io_init(void)
{
......@@ -30,9 +33,11 @@ static void key_io_init(void)
static void key_thread_entry(void *parameter)
{
#ifdef RT_USING_RTGUI
rt_time_t next_delay;
struct rtgui_event_kbd kbd_event;
rt_uint8_t i;
struct rtgui_event_kbd kbd_event;
key_io_init();
......@@ -103,6 +108,53 @@ static void key_thread_entry(void *parameter)
/* wait next key press */
rt_thread_delay(next_delay);
}
#else
extern struct rt_messagequeue mq;
rt_time_t next_delay;
rt_uint8_t i;
struct lcd_msg msg;
msg.type = KEY_MSG;
key_io_init();
while (1)
{
msg.key = NO_KEY;
next_delay = RT_TICK_PER_SECOND/10;
if (KEY_ENTER_GETVALUE() == 0 )
{
msg.key = KEY_ENTER;
}
if (KEY_DOWN_GETVALUE() == 0)
{
msg.key = KEY_DOWN;
}
if (KEY_UP_GETVALUE() == 0)
{
msg.key = KEY_UP;
}
if (KEY_RIGHT_GETVALUE() == 0)
{
msg.key = KEY_RIGHT;
}
if (KEY_LEFT_GETVALUE() == 0)
{
msg.key = KEY_LEFT;
}
rt_mq_send(&mq, &msg, sizeof(msg));
/* wait next key press */
rt_thread_delay(next_delay);
}
#endif
}
static rt_thread_t key_thread;
......
......@@ -21,6 +21,7 @@
#define KEY_LEFT (1<<2)
#define KEY_RIGHT (1<<3)
#define KEY_UP (1<<4)
#define NO_KEY (1<<5)
#define KEY_MASK (KEY_DOWN | KEY_ENTER | KEY_LEFT | KEY_RIGHT | KEY_UP)
#define KEY_PFR (FM3_GPIO->PFR7)
......
......@@ -14,8 +14,15 @@
#include <rtthread.h>
#include "lcd.h"
#include "font.h"
static rt_uint8_t gui_disp_buf[GUI_LCM_YMAX/8][GUI_LCM_XMAX];
const unsigned char BIT_MASK[8] = {0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01};
/* simple font: ' ', '0'~'9','a'~'z','A'~'Z' */
extern const unsigned char FONTTYPE8_8[][8];
rt_uint32_t x;
rt_uint32_t y;
struct rtgui_lcd_device
{
......@@ -291,6 +298,139 @@ static rt_err_t rt_lcd_init (rt_device_t dev)
return RT_EOK;
}
/*******************************************************************************
* Function Name : LCD_FillAll
* Description : Fill the whole LCD.
* Input : None
* Output : None
* Return : None
*******************************************************************************/
void LCD_FillAll(unsigned char* buffer)
{
unsigned char i,j = GUI_LCM_XMAX;
unsigned char* p = buffer;
for (i=0; i<GUI_LCM_PAGE; i++)
{
LCD_WriteCmd(Set_Page_Addr_0|i);
LCD_WriteCmd(Set_ColH_Addr_0);
LCD_WriteCmd(Set_ColL_Addr_0);
j = GUI_LCM_XMAX;
while (j--)
{
LCD_WriteData(*p++);
Delay();
}
}
}
/*******************************************************************************
* Function Name : LCD_ClearSCR
* Description : clean screen
* Input : None
* Output : None
* Return : None
*******************************************************************************/
void LCD_ClearSCR(void)
{
for(unsigned char i=0; i<GUI_LCM_PAGE; i++)
{
for(unsigned char j = 0; j < GUI_LCM_XMAX; j++)
gui_disp_buf[i][j] = 0;
}
LCD_FillAll((unsigned char*)gui_disp_buf);
}
/****************************************************************************
* Function Name : LCD_UpdatePoint
* Description : refresh the point in screen
* Input : x X-coordinate
y Y-coordinate
* Output : None
* Return : None
****************************************************************************/
void LCD_UpdatePoint(unsigned int x, unsigned int y)
{
unsigned char coll, colh, page;
page = y / 8;
coll = x & 0x0f;
colh = x >> 4;
LCD_WriteCmd(Set_Page_Addr_0 | page); // page no.
LCD_WriteCmd(Set_ColH_Addr_0 | colh); // fixed col first addr
LCD_WriteCmd(Set_ColL_Addr_0 | coll);
LCD_WriteData(gui_disp_buf[page][x]);
}
/****************************************************************************
* Function Name : LCD_PutChar
* Description : output a char to screen
(the char only can be ' ','0'~'9','A'~'Z','a'~'z')
* Input : x X-coordinate
y Y-coordinate
ch character
* Output : None
* Return : 1 Success
0 Fail
****************************************************************************/
unsigned char LCD_PutChar(unsigned long x, unsigned long y, unsigned char ch)
{
unsigned char data;
if( x >=(GUI_LCM_XMAX-8) ) return(0);
if( y >=(GUI_LCM_YMAX-8) ) return(0);
if(ch == 0x20)
ch -= 0x20;
else if((ch >= 0x30)&&(ch <= 0x39))
ch -= 0x2f;
else if((ch >= 0x41)&&(ch <= 0x5a))
ch -= 0x36;
else if((ch >= 0x61)&&(ch <= 0x7a))
ch -= 0x3C;
else
return(0);
for(unsigned char i = 0; i < 8; i++)
{
data = FONTTYPE8_8[ch][i];
for(unsigned char j = 0; j < 8; j++)
{
if( (data&BIT_MASK[j]) == 0)
gui_disp_buf[y / 8][x] &= (~(0x01 << ( y % 8)));
else
gui_disp_buf[y / 8][x] |= (0x01 <<( y % 8));
LCD_UpdatePoint(x, y);
x ++;
}
x -= 8;
y++;
}
return(1);
}
/****************************************************************************
* Function Name : LCD_PutString
* Description : output string to screen
* Input : x X-coordinate
y Y-coordinate
str pointer to string
* Output : None
* Return : None
****************************************************************************/
void LCD_PutString(unsigned long x, unsigned long y, char *str)
{
while(1)
{
if( (*str)=='\0' ) break;
if( LCD_PutChar(x, y, *str++) == 0 ) break;
x += 6;
}
}
static rt_err_t rt_lcd_control (rt_device_t dev, rt_uint8_t cmd, void *args)
{
switch (cmd)
......@@ -307,6 +447,12 @@ static rt_err_t rt_lcd_control (rt_device_t dev, rt_uint8_t cmd, void *args)
case RT_DEVICE_CTRL_LCD_DISPLAY_OFF:
LCD_WriteCmd(Display_Off);
break;
case RT_DEVICE_CTRL_LCD_PUT_STRING:
LCD_PutString(x, y, (rt_uint8_t*)args);
break;
case RT_DEVICE_CTRL_LCD_CLEAR_SCR:
LCD_ClearSCR();
break;
}
return RT_EOK;
}
......
......@@ -161,6 +161,27 @@ LCD_DATA[0..7] PORT5.[0..7]
#define RT_DEVICE_CTRL_LCD_UPDATE_POINT 8
#define RT_DEVICE_CTRL_LCD_DISPLAY_ON 9
#define RT_DEVICE_CTRL_LCD_DISPLAY_OFF 10
#define RT_DEVICE_CTRL_LCD_PUT_STRING 11
enum
{
ADC_MSG,
KEY_MSG,
CPU_MSG,
MAX_MSG,
};
struct lcd_msg
{
rt_uint8_t type;
rt_uint16_t adc_value;
rt_uint8_t key;
rt_uint16_t major;
rt_uint16_t minor;
};
extern rt_uint32_t x;
extern rt_uint32_t y;
void rt_hw_lcd_init(void);
......
......@@ -63,7 +63,7 @@
/* SECTION: RTGUI support */
/* using RTGUI support */
#define RT_USING_RTGUI
//#define RT_USING_RTGUI
/* name length of RTGUI object */
#define RTGUI_NAME_MAX 16
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册