diff --git a/bsp/fm3/CMSIS/SConscript b/bsp/fm3/CMSIS/SConscript index 3153dc7284c77829b5322378f6c046757edfed93..e058a7aad15d07e7a43d65e8941621ee364e2610 100644 --- a/bsp/fm3/CMSIS/SConscript +++ b/bsp/fm3/CMSIS/SConscript @@ -3,6 +3,15 @@ Import('rtconfig') from building import * src = Glob('*.c') + +# add for startup script +if rtconfig.CROSS_TOOL == 'gcc': + src = src + ['start_gcc.S'] +elif rtconfig.CROSS_TOOL == 'keil': + src = src + ['start_rvds.S'] +elif rtconfig.CROSS_TOOL == 'iar': + src = src + ['start_iar.S'] + CPPPATH = [GetCurrentDir()] group = DefineGroup('CMSIS', src, depend = [''], CPPPATH = CPPPATH, LIBRARY = '') diff --git a/libcpu/arm/fm3/start_gcc.S b/bsp/fm3/CMSIS/start_gcc.S similarity index 93% rename from libcpu/arm/fm3/start_gcc.S rename to bsp/fm3/CMSIS/start_gcc.S index 59993aea2ad2b42c9a209e863ce085227fe3758a..ad0f8af0c3fe703039af3f27cf988aa44902b0fb 100644 --- a/libcpu/arm/fm3/start_gcc.S +++ b/bsp/fm3/CMSIS/start_gcc.S @@ -116,7 +116,7 @@ g_pfnVectors: .word Initial_spTop .word Reset_Handler .word NMI_Handler - .word rt_hw_hard_fault + .word HardFault_Handler .word MemManage_Handler .word BusFault_Handler .word UsageFault_Handler @@ -127,8 +127,8 @@ g_pfnVectors: .word SVC_Handler .word DebugMon_Handler .word 0 - .word rt_hw_pend_sv - .word rt_hw_timer_handler + .word PendSV_Handler + .word SysTick_Handler .word CSV_IRQHandler .word SWDT_IRQHandler @@ -189,7 +189,10 @@ g_pfnVectors: .weak NMI_Handler .thumb_set NMI_Handler,Default_Handler - + + .weak HardFault_Handler + .thumb_set HardFault_Handler,Default_Handler + .weak MemManage_Handler .thumb_set MemManage_Handler,Default_Handler @@ -205,6 +208,12 @@ g_pfnVectors: .weak DebugMon_Handler .thumb_set DebugMon_Handler,Default_Handler + .weak PendSV_Handler + .thumb_set PendSV_Handler,Default_Handler + + .weak SysTick_Handler + .thumb_set SysTick_Handler,Default_Handler + .weak CSV_IRQHandler .thumb_set CSV_IRQHandler,Default_Handler diff --git a/libcpu/arm/fm3/start_iar.S b/bsp/fm3/CMSIS/start_iar.S similarity index 92% rename from libcpu/arm/fm3/start_iar.S rename to bsp/fm3/CMSIS/start_iar.S index b5c9c361709c6dcc6ff4f5684271f4d8c72741cf..b111ce9b43098999ad23307d13da5dcce8794f33 100644 --- a/libcpu/arm/fm3/start_iar.S +++ b/bsp/fm3/CMSIS/start_iar.S @@ -23,9 +23,6 @@ SECTION CSTACK:DATA:NOROOT(3) SECTION .icode:CODE:NOROOT(2) - IMPORT rt_hw_hard_fault - IMPORT rt_hw_pend_sv - IMPORT rt_hw_timer_handler #ifdef RT_USING_UART2 IMPORT MFS2RX_IRQHandler #endif @@ -60,7 +57,7 @@ __vector_table DCD __iar_program_start DCD NMI_Handler ; NMI Handler - DCD rt_hw_hard_fault ; Hard Fault Handler + DCD HardFault_Handler ; Hard Fault Handler DCD MemManage_Handler ; MPU Fault Handler DCD BusFault_Handler ; Bus Fault Handler DCD UsageFault_Handler ; Usage Fault Handler @@ -71,8 +68,8 @@ __vector_table DCD SVC_Handler ; SVCall Handler DCD DebugMon_Handler ; Debug Monitor Handler DCD 0 ; Reserved - DCD rt_hw_pend_sv ; PendSV Handler - DCD rt_hw_timer_handler ; SysTick Handler + DCD PendSV_Handler ; PendSV Handler + DCD SysTick_Handler ; SysTick Handler ; External Interrupts DCD CSV_IRQHandler ; Clock Super Visor @@ -138,6 +135,10 @@ __vector_table SECTION .text:CODE:REORDER(1) NMI_Handler B NMI_Handler + PUBWEAK HardFault_Handler + SECTION .text:CODE:REORDER(1) +HardFault_Handler + B HardFault_Handler PUBWEAK MemManage_Handler SECTION .text:CODE:REORDER(1) MemManage_Handler @@ -158,6 +159,14 @@ SVC_Handler SECTION .text:CODE:REORDER(1) DebugMon_Handler B DebugMon_Handler + PUBWEAK PendSV_Handler + SECTION .text:CODE:REORDER(1) +PendSV_Handler + B PendSV_Handler + PUBWEAK SysTick_Handler + SECTION .text:CODE:REORDER(1) +SysTick_Handler + B SysTick_Handler PUBWEAK CSV_IRQHandler SECTION .text:CODE:REORDER(1) CSV_IRQHandler diff --git a/libcpu/arm/fm3/start_rvds.S b/bsp/fm3/CMSIS/start_rvds.S similarity index 58% rename from libcpu/arm/fm3/start_rvds.S rename to bsp/fm3/CMSIS/start_rvds.S index 90f49ecd9f4c66ae0702be58751cb715fb8d2832..fc755132c1419c7052d6fab5ec441905c1e1695a 100644 --- a/libcpu/arm/fm3/start_rvds.S +++ b/bsp/fm3/CMSIS/start_rvds.S @@ -37,10 +37,6 @@ __heap_limit PRESERVE8 THUMB - IMPORT rt_hw_hard_fault - IMPORT rt_hw_pend_sv - IMPORT rt_hw_timer_handler - ; Vector Table Mapped to Address 0 at Reset AREA RESET, DATA, READONLY EXPORT __Vectors @@ -48,70 +44,70 @@ __heap_limit EXPORT __Vectors_Size __Vectors DCD __initial_sp ; Top of Stack - DCD Reset_Handler ; Reset Handler - DCD NMI_Handler ; NMI Handler - DCD rt_hw_hard_fault ; Hard Fault Handler - DCD MemManage_Handler ; MPU Fault Handler - DCD BusFault_Handler ; Bus Fault Handler - DCD UsageFault_Handler ; Usage Fault Handler - DCD 0 ; Reserved - DCD 0 ; Reserved - DCD 0 ; Reserved - DCD 0 ; Reserved - DCD SVC_Handler ; SVCall Handler - DCD DebugMon_Handler ; Debug Monitor Handler - DCD 0 ; Reserved - DCD rt_hw_pend_sv ; PendSV Handler - DCD rt_hw_timer_handler ; SysTick Handler + DCD Reset_Handler ; Reset Handler + DCD NMI_Handler ; NMI Handler + DCD HardFault_Handler ; Hard Fault Handler + DCD MemManage_Handler ; MPU Fault Handler + DCD BusFault_Handler ; Bus Fault Handler + DCD UsageFault_Handler ; Usage Fault Handler + DCD 0 ; Reserved + DCD 0 ; Reserved + DCD 0 ; Reserved + DCD 0 ; Reserved + DCD SVC_Handler ; SVCall Handler + DCD DebugMon_Handler ; Debug Monitor Handler + DCD 0 ; Reserved + DCD PendSV_Handler ; PendSV Handler + DCD SysTick_Handler ; SysTick Handler - DCD CSV_Handler ; 0: Clock Super Visor - DCD SWDT_Handler ; 1: Software Watchdog Timer - DCD LVD_Handler ; 2: Low Voltage Detector - DCD MFT_WG_IRQHandler ; 3: Wave Form Generator / DTIF - DCD INT0_7_Handler ; 4: External Interrupt Request ch.0 to ch.7 - DCD INT8_15_Handler ; 5: External Interrupt Request ch.8 to ch.15 - DCD DT_Handler ; 6: Dual Timer / Quad Decoder - DCD MFS0RX_IRQHandler ; 7: MultiFunction Serial ch.0 - DCD MFS0TX_IRQHandler ; 8: MultiFunction Serial ch.0 - DCD MFS1RX_IRQHandler ; 9: MultiFunction Serial ch.1 - DCD MFS1TX_IRQHandler ; 10: MultiFunction Serial ch.1 - DCD MFS2RX_IRQHandler ; 11: MultiFunction Serial ch.2 - DCD MFS2TX_IRQHandler ; 12: MultiFunction Serial ch.2 - DCD MFS3RX_IRQHandler ; 13: MultiFunction Serial ch.3 - DCD MFS3TX_IRQHandler ; 14: MultiFunction Serial ch.3 - DCD MFS4RX_IRQHandler ; 15: MultiFunction Serial ch.4 - DCD MFS4TX_IRQHandler ; 16: MultiFunction Serial ch.4 - DCD MFS5RX_IRQHandler ; 17: MultiFunction Serial ch.5 - DCD MFS5TX_IRQHandler ; 18: MultiFunction Serial ch.5 - DCD MFS6RX_IRQHandler ; 19: MultiFunction Serial ch.6 - DCD MFS6TX_IRQHandler ; 20: MultiFunction Serial ch.6 - DCD MFS7RX_IRQHandler ; 21: MultiFunction Serial ch.7 - DCD MFS7TX_IRQHandler ; 22: MultiFunction Serial ch.7 - DCD PPG_Handler ; 23: PPG - DCD TIM_IRQHandler ; 24: OSC / PLL / Watch Counter - DCD ADC0_IRQHandler ; 25: ADC0 - DCD ADC1_IRQHandler ; 26: ADC1 - DCD ADC2_IRQHandler ; 27: ADC2 - DCD MFT_FRT_IRQHandler ; 28: Free-run Timer - DCD MFT_IPC_IRQHandler ; 29: Input Capture - DCD MFT_OPC_IRQHandler ; 30: Output Compare - DCD BT_IRQHandler ; 31: Base Timer ch.0 to ch.7 - DCD CAN0_IRQHandler ; 32: CAN ch.0 - DCD CAN1_IRQHandler ; 33: CAN ch.1 - DCD USBF_Handler ; 34: USB Function - DCD USB_Handler ; 35: USB Function / USB HOST - DCD DummyHandler ; 36: Reserved - DCD DummyHandler ; 37: Reserved - DCD DMAC0_Handler ; 38: DMAC ch.0 - DCD DMAC1_Handler ; 39: DMAC ch.1 - DCD DMAC2_Handler ; 40: DMAC ch.2 - DCD DMAC3_Handler ; 41: DMAC ch.3 - DCD DMAC4_Handler ; 42: DMAC ch.4 - DCD DMAC5_Handler ; 43: DMAC ch.5 - DCD DMAC6_Handler ; 44: DMAC ch.6 - DCD DMAC7_Handler ; 45: DMAC ch.7 - DCD DummyHandler ; 46: Reserved - DCD DummyHandler ; 47: Reserved + DCD CSV_Handler ; 0: Clock Super Visor + DCD SWDT_Handler ; 1: Software Watchdog Timer + DCD LVD_Handler ; 2: Low Voltage Detector + DCD MFT_WG_IRQHandler ; 3: Wave Form Generator / DTIF + DCD INT0_7_Handler ; 4: External Interrupt Request ch.0 to ch.7 + DCD INT8_15_Handler ; 5: External Interrupt Request ch.8 to ch.15 + DCD DT_Handler ; 6: Dual Timer / Quad Decoder + DCD MFS0RX_IRQHandler ; 7: MultiFunction Serial ch.0 + DCD MFS0TX_IRQHandler ; 8: MultiFunction Serial ch.0 + DCD MFS1RX_IRQHandler ; 9: MultiFunction Serial ch.1 + DCD MFS1TX_IRQHandler ; 10: MultiFunction Serial ch.1 + DCD MFS2RX_IRQHandler ; 11: MultiFunction Serial ch.2 + DCD MFS2TX_IRQHandler ; 12: MultiFunction Serial ch.2 + DCD MFS3RX_IRQHandler ; 13: MultiFunction Serial ch.3 + DCD MFS3TX_IRQHandler ; 14: MultiFunction Serial ch.3 + DCD MFS4RX_IRQHandler ; 15: MultiFunction Serial ch.4 + DCD MFS4TX_IRQHandler ; 16: MultiFunction Serial ch.4 + DCD MFS5RX_IRQHandler ; 17: MultiFunction Serial ch.5 + DCD MFS5TX_IRQHandler ; 18: MultiFunction Serial ch.5 + DCD MFS6RX_IRQHandler ; 19: MultiFunction Serial ch.6 + DCD MFS6TX_IRQHandler ; 20: MultiFunction Serial ch.6 + DCD MFS7RX_IRQHandler ; 21: MultiFunction Serial ch.7 + DCD MFS7TX_IRQHandler ; 22: MultiFunction Serial ch.7 + DCD PPG_Handler ; 23: PPG + DCD TIM_IRQHandler ; 24: OSC / PLL / Watch Counter + DCD ADC0_IRQHandler ; 25: ADC0 + DCD ADC1_IRQHandler ; 26: ADC1 + DCD ADC2_IRQHandler ; 27: ADC2 + DCD MFT_FRT_IRQHandler ; 28: Free-run Timer + DCD MFT_IPC_IRQHandler ; 29: Input Capture + DCD MFT_OPC_IRQHandler ; 30: Output Compare + DCD BT_IRQHandler ; 31: Base Timer ch.0 to ch.7 + DCD CAN0_IRQHandler ; 32: CAN ch.0 + DCD CAN1_IRQHandler ; 33: CAN ch.1 + DCD USBF_Handler ; 34: USB Function + DCD USB_Handler ; 35: USB Function / USB HOST + DCD DummyHandler ; 36: Reserved + DCD DummyHandler ; 37: Reserved + DCD DMAC0_Handler ; 38: DMAC ch.0 + DCD DMAC1_Handler ; 39: DMAC ch.1 + DCD DMAC2_Handler ; 40: DMAC ch.2 + DCD DMAC3_Handler ; 41: DMAC ch.3 + DCD DMAC4_Handler ; 42: DMAC ch.4 + DCD DMAC5_Handler ; 43: DMAC ch.5 + DCD DMAC6_Handler ; 44: DMAC ch.6 + DCD DMAC7_Handler ; 45: DMAC ch.7 + DCD DummyHandler ; 46: Reserved + DCD DummyHandler ; 47: Reserved __Vectors_End __Vectors_Size EQU __Vectors_End - __Vectors @@ -166,6 +162,14 @@ DebugMon_Handler\ EXPORT DebugMon_Handler [WEAK] B . ENDP +PendSV_Handler PROC + EXPORT PendSV_Handler [WEAK] + B . + ENDP +SysTick_Handler PROC + EXPORT SysTick_Handler [WEAK] + B . + ENDP Default_Handler PROC diff --git a/bsp/fm3/mb9bf500r/board.c b/bsp/fm3/mb9bf500r/board.c index ac19ca8cae3f422d9d65121752b3885a1f550924..896afc9ed40e152f79cead4a0f261269a3325a76 100644 --- a/bsp/fm3/mb9bf500r/board.c +++ b/bsp/fm3/mb9bf500r/board.c @@ -31,7 +31,7 @@ extern const uint32_t SystemFrequency; * This is the timer interrupt service routine. * */ -void rt_hw_timer_handler(void) +void SysTick_Handler(void) { /* enter interrupt */ rt_interrupt_enter(); diff --git a/bsp/fm3/mb9bf500r/fm3_easy_kit.dep b/bsp/fm3/mb9bf500r/fm3_easy_kit.dep index 7f5116217c7f067905ffdba27bdd2ac6b7dd3ad8..c1406e8144cf146120054ec047dc3a7a23ecfdeb 100644 --- a/bsp/fm3/mb9bf500r/fm3_easy_kit.dep +++ b/bsp/fm3/mb9bf500r/fm3_easy_kit.dep @@ -2,119 +2,17 @@ 2 - 3361104972 + 3134168473 Debug - $PROJ_DIR$\Debug\Obj\startup.pbi + $PROJ_DIR$\..\..\..\libcpu\arm\cortex-m3\context_iar.S $PROJ_DIR$\Debug\Obj\thread.o - $PROJ_DIR$\Debug\Obj\device.o + $PROJ_DIR$\Debug\Obj\startup.pbi $PROJ_DIR$\Debug\Obj\info.o - $PROJ_DIR$\..\..\..\components\rtgui\common\image_hdc.c - $PROJ_DIR$\..\..\..\components\rtgui\common\image_xpm.c - $PROJ_DIR$\..\..\..\components\rtgui\common\image_jpg.c $PROJ_DIR$\Debug\Obj\mouse.pbi - $PROJ_DIR$\Debug\Obj\system_mb9bf50x.pbi - $PROJ_DIR$\Debug\Obj\kservice.pbi - $PROJ_DIR$\Debug\Obj\board.pbi - $PROJ_DIR$\Debug\Obj\rtm.pbi - $PROJ_DIR$\Debug\Obj\system_mb9bf50x.o - $PROJ_DIR$\Debug\Obj\server.o - $PROJ_DIR$\Debug\Obj\topwin.o - $PROJ_DIR$\Debug\Obj\driver.o - $PROJ_DIR$\Debug\Obj\mouse.o - $PROJ_DIR$\Debug\Obj\asc16font.o - $PROJ_DIR$\Debug\Obj\font_hz_file.o - $PROJ_DIR$\Debug\Obj\blit.o - $PROJ_DIR$\Debug\Obj\color.o - $PROJ_DIR$\Debug\Obj\asc12font.o - $PROJ_DIR$\Debug\Obj\pixel_driver.pbi - $PROJ_DIR$\Debug\Obj\dc.o - $PROJ_DIR$\Debug\Obj\dc_buffer.o - $PROJ_DIR$\Debug\Obj\dc_client.o - $PROJ_DIR$\Debug\Obj\dc_hw.o - $PROJ_DIR$\Debug\Obj\filerw.o - $PROJ_DIR$\Debug\Obj\font.o - $PROJ_DIR$\Debug\Obj\font_bmp.o - $PROJ_DIR$\Debug\Obj\font_freetype.o - $PROJ_DIR$\Debug\Obj\font_hz_bmp.o - $PROJ_DIR$\Debug\Obj\led.pbi - $PROJ_DIR$\Debug\Obj\cpuusage.pbi - $PROJ_DIR$\Debug\Obj\mem.pbi - $PROJ_DIR$\Debug\Obj\mem.o - $PROJ_DIR$\Debug\Obj\slab.pbi - $PROJ_DIR$\Debug\Obj\led.o - $PROJ_DIR$\Debug\Obj\core_cm3.o - $PROJ_DIR$\Debug\Obj\start_iar.o - $PROJ_DIR$\Debug\Obj\module.o - $PROJ_DIR$\Debug\Obj\device.pbi - $PROJ_DIR$\Debug\Obj\application.pbi - $PROJ_DIR$\Debug\Obj\kservice.o - $PROJ_DIR$\Debug\Obj\cpuport.pbi - $PROJ_DIR$\Debug\Obj\board.o - $PROJ_DIR$\Debug\Obj\object.pbi - $PROJ_DIR$\Debug\Obj\module.pbi - $PROJ_DIR$\Debug\Obj\irq.o - $PROJ_DIR$\Debug\Obj\clock.o - $PROJ_DIR$\Debug\Exe\fm3_easy_kit.out - $PROJ_DIR$\Debug\Obj\driver.pbi - $PROJ_DIR$\Debug\Obj\combobox.o - $PROJ_DIR$\Debug\Obj\notebook.o - $PROJ_DIR$\Debug\Obj\server.pbi - $PROJ_DIR$\Debug\Obj\box.o - $PROJ_DIR$\Debug\Obj\topwin.pbi - $PROJ_DIR$\Debug\Obj\button.o - $PROJ_DIR$\Debug\Obj\about_view.o - $PROJ_DIR$\Debug\Obj\panel.o - $PROJ_DIR$\Debug\Obj\checkbox.o - $PROJ_DIR$\Debug\Obj\iconbox.o - $PROJ_DIR$\Debug\Obj\filelist_view.o - $PROJ_DIR$\Debug\Obj\container.o - $PROJ_DIR$\Debug\Obj\framebuffer_driver.o - $PROJ_DIR$\Debug\Obj\blit.pbi - $PROJ_DIR$\Debug\Obj\hz12font.o - $PROJ_DIR$\Debug\Obj\hz16font.o - $PROJ_DIR$\Debug\Obj\image.o - $PROJ_DIR$\Debug\Obj\image_bmp.o - $PROJ_DIR$\Debug\Obj\image_container.o - $PROJ_DIR$\Debug\Obj\image_hdc.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\pixel_driver.o - $PROJ_DIR$\Debug\Obj\region.o - $PROJ_DIR$\Debug\Obj\rtgui_object.o - $PROJ_DIR$\Debug\Obj\rtgui_system.o - $PROJ_DIR$\Debug\Obj\rtgui_theme.o - $PROJ_DIR$\Debug\Obj\rtgui_xml.o - $PROJ_DIR$\Debug\Obj\asc16font.pbi - $PROJ_DIR$\Debug\Obj\asc12font.pbi - $PROJ_DIR$\Debug\Obj\color.pbi - $PROJ_DIR$\Debug\Obj\font_hz_file.pbi - $PROJ_DIR$\Debug\Obj\dc.pbi - $PROJ_DIR$\Debug\Obj\dc_buffer.pbi - $PROJ_DIR$\Debug\Obj\dc_client.pbi - $PROJ_DIR$\Debug\Obj\dc_hw.pbi - $PROJ_DIR$\Debug\Obj\filerw.pbi - $PROJ_DIR$\Debug\Obj\font.pbi - $PROJ_DIR$\Debug\Obj\font_bmp.pbi - $PROJ_DIR$\Debug\Obj\font_freetype.pbi - $PROJ_DIR$\Debug\Obj\font_hz_bmp.pbi - $PROJ_DIR$\Debug\Obj\rtm.o - $PROJ_DIR$\Debug\Obj\thread.pbi - $PROJ_DIR$\Debug\Obj\timer.o - $PROJ_DIR$\Debug\Obj\rtgui_system.pbi - $PROJ_DIR$\Debug\Obj\region.pbi - $PROJ_DIR$\Debug\Obj\rtgui_object.pbi - $PROJ_DIR$\Debug\Obj\rtgui_theme.pbi - $PROJ_DIR$\Debug\Obj\rtgui_xml.pbi - $PROJ_DIR$\Debug\Obj\label.o - $PROJ_DIR$\Debug\Obj\scrollbar.o - $PROJ_DIR$\Debug\Obj\about_view.pbi - $PROJ_DIR$\Debug\Obj\listbox.pbi - $PROJ_DIR$\Debug\Obj\combobox.pbi - $PROJ_DIR$\Debug\Obj\checkbox.pbi - $PROJ_DIR$\Debug\Obj\list_view.pbi + $PROJ_DIR$\..\CMSIS\system_mb9bf50x.c + $PROJ_DIR$\..\CMSIS\core_cm3.c $PROJ_DIR$\Debug\Obj\filelist_view.pbi $PROJ_DIR$\Debug\Obj\iconbox.pbi $PROJ_DIR$\Debug\Obj\radiobox.pbi @@ -135,7 +33,6 @@ $PROJ_DIR$\Debug\Obj\startup.o $PROJ_DIR$\Debug\Obj\idle.pbi $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$\Debug\Obj\object.o @@ -146,6 +43,10 @@ $PROJ_DIR$\Debug\Obj\mempool.pbi $PROJ_DIR$\Debug\Obj\framebuffer_driver.pbi $PROJ_DIR$\Debug\Obj\hz12font.pbi + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\rtgui_config.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\widgets\widget.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\event.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\widgets\label.h $PROJ_DIR$\Debug\Obj\hz16font.pbi $PROJ_DIR$\Debug\Obj\image.pbi $PROJ_DIR$\Debug\Obj\image_bmp.pbi @@ -170,6 +71,100 @@ $PROJ_DIR$\Debug\Obj\menu.o $PROJ_DIR$\Debug\Obj\progressbar.o $PROJ_DIR$\Debug\Obj\view.o + $PROJ_DIR$\Debug\Obj\asc16font.o + $PROJ_DIR$\Debug\Obj\font_hz_file.o + $PROJ_DIR$\Debug\Obj\blit.o + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\widgets\container.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\rtgui_system.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\rtgui.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\widgets\view.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\widgets\box.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\widgets\staticline.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\iconbox.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\widgets\about_view.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\widgets\radiobox.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\widgets\checkbox.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\dc.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\widgets\button.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\rtgui_server.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\tree.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\filerw.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\driver.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\image.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\color.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\font.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\kbddef.h + $PROJ_DIR$\Debug\Obj\object.pbi + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\region.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\list.h + $PROJ_DIR$\Debug\Obj\module.pbi + $PROJ_DIR$\Debug\Obj\irq.o + $PROJ_DIR$\Debug\Obj\clock.o + $PROJ_DIR$\Debug\Exe\fm3_easy_kit.out + $PROJ_DIR$\Debug\Obj\driver.pbi + $PROJ_DIR$\Debug\Obj\combobox.o + $PROJ_DIR$\Debug\Obj\notebook.o + $PROJ_DIR$\Debug\Obj\server.pbi + $PROJ_DIR$\Debug\Obj\box.o + $PROJ_DIR$\Debug\Obj\topwin.pbi + $PROJ_DIR$\Debug\Obj\button.o + $PROJ_DIR$\Debug\Obj\about_view.o + $PROJ_DIR$\Debug\Obj\panel.o + $PROJ_DIR$\Debug\Obj\checkbox.o + $PROJ_DIR$\Debug\Obj\iconbox.o + $PROJ_DIR$\Debug\Obj\filelist_view.o + $PROJ_DIR$\Debug\Obj\container.o + $PROJ_DIR$\Debug\Obj\framebuffer_driver.o + $PROJ_DIR$\Debug\Obj\blit.pbi + $PROJ_DIR$\Debug\Obj\hz12font.o + $PROJ_DIR$\Debug\Obj\hz16font.o + $PROJ_DIR$\Debug\Obj\image.o + $PROJ_DIR$\Debug\Obj\image_bmp.o + $PROJ_DIR$\Debug\Obj\image_container.o + $PROJ_DIR$\Debug\Obj\image_hdc.o + $PROJ_DIR$\Debug\Obj\image_jpg.o + $PROJ_DIR$\Debug\Obj\image_png.o + $PROJ_DIR$\Debug\Obj\image_xpm.o + $TOOLKIT_DIR$\inc\c\ystdio.h + $TOOLKIT_DIR$\inc\c\stdio.h + $TOOLKIT_DIR$\inc\c\assert.h + $PROJ_DIR$\..\..\..\include\rtm.h + $TOOLKIT_DIR$\inc\c\DLib_Product.h + $TOOLKIT_DIR$\inc\c\xencoding_limits.h + $TOOLKIT_DIR$\inc\c\DLib_Threads.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\rtgui_theme.h + $PROJ_DIR$\..\CMSIS\core_cm3.h + $PROJ_DIR$\..\CMSIS\mb9bf506r.h + $PROJ_DIR$\..\CMSIS\core_cmInstr.h + $TOOLKIT_DIR$\inc\c\intrinsics.h + $PROJ_DIR$\..\CMSIS\core_cmFunc.h + $PROJ_DIR$\..\CMSIS\system_mb9bf50x.h + $PROJ_DIR$\..\..\..\include\rtthread.h + $PROJ_DIR$\..\..\..\include\rthw.h + $PROJ_DIR$\rtconfig.h + $PROJ_DIR$\..\..\..\include\rtdebug.h + $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\..\..\..\src\kservice.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\rtgui_object.h + $PROJ_DIR$\..\..\..\include\rtdef.h + $PROJ_DIR$\Debug\Obj\kservice.pbi + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h + $PROJ_DIR$\Debug\Obj\system_mb9bf50x.pbi + $PROJ_DIR$\Debug\Obj\board.pbi + $PROJ_DIR$\Debug\Obj\rtm.pbi + $PROJ_DIR$\Debug\Obj\system_mb9bf50x.o + $PROJ_DIR$\Debug\Obj\server.o + $PROJ_DIR$\Debug\Obj\topwin.o + $PROJ_DIR$\Debug\Obj\driver.o + $PROJ_DIR$\Debug\Obj\mouse.o + $TOOLKIT_DIR$\inc\c\stdlib.h + $PROJ_DIR$\Debug\Obj\device.o + $TOOLKIT_DIR$\inc\c\string.h + $TOOLKIT_DIR$\inc\c\DLib_Product_string.h $PROJ_DIR$\Debug\Obj\radiobox.o $PROJ_DIR$\Debug\Obj\slider.o $PROJ_DIR$\Debug\Obj\box.pbi @@ -190,1290 +185,1523 @@ $PROJ_DIR$\Debug\Obj\idle.o $PROJ_DIR$\Debug\Obj\cpuport.o $PROJ_DIR$\Debug\Obj\ipc.pbi - $PROJ_DIR$\..\..\..\libcpu\arm\fm3\cpuport.c - $PROJ_DIR$\..\..\..\libcpu\arm\fm3\context_iar.S - $PROJ_DIR$\..\CMSIS\system_mb9bf50x.c - $PROJ_DIR$\..\..\..\components\rtgui\widgets\about_view.c - $PROJ_DIR$\..\CMSIS\core_cm3.c - $PROJ_DIR$\..\..\..\libcpu\arm\fm3\fault_iar.S - $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\mempool.c - $PROJ_DIR$\..\..\..\src\module.c - $PROJ_DIR$\..\..\..\src\object.c - $PROJ_DIR$\..\..\..\src\rtm.c - $PROJ_DIR$\..\..\..\src\scheduler.c - $PROJ_DIR$\..\..\..\src\slab.c - $PROJ_DIR$\..\..\..\src\thread.c - $PROJ_DIR$\..\..\..\src\timer.c - $PROJ_DIR$\..\..\..\components\rtgui\common\asc12font.c - $PROJ_DIR$\..\..\..\components\rtgui\common\asc16font.c - $PROJ_DIR$\..\..\..\components\rtgui\widgets\container.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\common\dc.c + $PROJ_DIR$\Debug\Obj\listctrl.pbi + $PROJ_DIR$\Debug\Obj\notebook.pbi + $TOOLKIT_DIR$\inc\c\yvals.h + $TOOLKIT_DIR$\inc\c\ycheck.h + $TOOLKIT_DIR$\inc\c\stdint.h + $PROJ_DIR$\Debug\Obj\led.o + $PROJ_DIR$\Debug\Obj\core_cm3.o + $PROJ_DIR$\Debug\Obj\start_iar.o + $PROJ_DIR$\Debug\Obj\module.o + $PROJ_DIR$\Debug\Obj\device.pbi + $PROJ_DIR$\Debug\Obj\application.pbi + $PROJ_DIR$\Debug\Obj\kservice.o + $PROJ_DIR$\Debug\Obj\cpuport.pbi + $PROJ_DIR$\Debug\Obj\board.o + $PROJ_DIR$\Debug\Obj\pixel_driver.o + $PROJ_DIR$\Debug\Obj\region.o + $PROJ_DIR$\Debug\Obj\rtgui_object.o + $PROJ_DIR$\Debug\Obj\rtgui_system.o + $PROJ_DIR$\Debug\Obj\rtgui_theme.o + $PROJ_DIR$\Debug\Obj\rtgui_xml.o + $PROJ_DIR$\Debug\Obj\asc16font.pbi + $PROJ_DIR$\Debug\Obj\asc12font.pbi + $PROJ_DIR$\Debug\Obj\color.pbi + $PROJ_DIR$\Debug\Obj\font_hz_file.pbi + $PROJ_DIR$\Debug\Obj\dc.pbi + $PROJ_DIR$\Debug\Obj\dc_buffer.pbi + $PROJ_DIR$\Debug\Obj\dc_client.pbi + $PROJ_DIR$\Debug\Obj\dc_hw.pbi + $PROJ_DIR$\Debug\Obj\filerw.pbi + $PROJ_DIR$\Debug\Obj\font.pbi + $PROJ_DIR$\Debug\Obj\font_bmp.pbi + $PROJ_DIR$\Debug\Obj\font_freetype.pbi + $PROJ_DIR$\Debug\Obj\font_hz_bmp.pbi + $PROJ_DIR$\Debug\Obj\rtm.o + $PROJ_DIR$\Debug\Obj\thread.pbi + $PROJ_DIR$\Debug\Obj\timer.o + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\widgets\window.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\widgets\toplevel.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\blit.h + $TOOLKIT_DIR$\inc\c\ysizet.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\widgets\combobox.h + $PROJ_DIR$\..\..\..\components\rtgui\include\rtgui\widgets\listbox.h + $PROJ_DIR$\Debug\Obj\color.o + $PROJ_DIR$\Debug\Obj\asc12font.o + $PROJ_DIR$\Debug\Obj\pixel_driver.pbi + $PROJ_DIR$\Debug\Obj\dc.o + $PROJ_DIR$\Debug\Obj\dc_buffer.o + $PROJ_DIR$\Debug\Obj\dc_client.o + $PROJ_DIR$\Debug\Obj\dc_hw.o + $PROJ_DIR$\Debug\Obj\filerw.o + $PROJ_DIR$\Debug\Obj\font.o + $PROJ_DIR$\Debug\Obj\font_bmp.o + $PROJ_DIR$\Debug\Obj\font_freetype.o + $PROJ_DIR$\Debug\Obj\font_hz_bmp.o + $PROJ_DIR$\Debug\Obj\led.pbi + $PROJ_DIR$\Debug\Obj\cpuusage.pbi + $PROJ_DIR$\Debug\Obj\mem.pbi + $PROJ_DIR$\Debug\Obj\mem.o + $PROJ_DIR$\Debug\Obj\slab.pbi + $PROJ_DIR$\Debug\Obj\rtgui_system.pbi + $PROJ_DIR$\Debug\Obj\region.pbi + $PROJ_DIR$\Debug\Obj\rtgui_object.pbi + $PROJ_DIR$\Debug\Obj\rtgui_theme.pbi + $PROJ_DIR$\Debug\Obj\rtgui_xml.pbi + $PROJ_DIR$\Debug\Obj\label.o + $PROJ_DIR$\Debug\Obj\scrollbar.o + $PROJ_DIR$\Debug\Obj\about_view.pbi + $PROJ_DIR$\Debug\Obj\listbox.pbi + $PROJ_DIR$\Debug\Obj\combobox.pbi + $PROJ_DIR$\Debug\Obj\checkbox.pbi + $PROJ_DIR$\Debug\Obj\list_view.pbi $PROJ_DIR$\..\..\..\components\rtgui\common\dc_buffer.c - $PROJ_DIR$\..\..\..\components\rtgui\widgets\filelist_view.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\filerw.c $PROJ_DIR$\..\..\..\components\rtgui\common\font.c - $PROJ_DIR$\..\..\..\components\rtgui\common\font_freetype.c $PROJ_DIR$\..\..\..\components\rtgui\common\font_bmp.c - $PROJ_DIR$\..\..\..\components\rtgui\common\framebuffer_driver.c - $PROJ_DIR$\..\..\..\components\rtgui\common\hz12font.c + $PROJ_DIR$\..\..\..\components\rtgui\common\font_freetype.c $PROJ_DIR$\..\..\..\components\rtgui\common\font_hz_bmp.c $PROJ_DIR$\..\..\..\components\rtgui\common\font_hz_file.c - $PROJ_DIR$\..\..\..\components\rtgui\common\image_container.c + $PROJ_DIR$\..\..\..\components\rtgui\common\framebuffer_driver.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_hdc.c + $PROJ_DIR$\..\..\..\components\rtgui\common\image_jpg.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\common\pixel_driver.c $PROJ_DIR$\..\..\..\components\rtgui\widgets\menu.c $PROJ_DIR$\..\..\..\components\rtgui\server\mouse.c $PROJ_DIR$\..\..\..\components\rtgui\widgets\notebook.c $PROJ_DIR$\..\..\..\components\rtgui\server\panel.c + $PROJ_DIR$\..\..\..\components\rtgui\common\pixel_driver.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\progressbar.c $PROJ_DIR$\..\..\..\components\rtgui\widgets\radiobox.c $PROJ_DIR$\..\..\..\components\rtgui\common\region.c - $PROJ_DIR$\..\..\..\components\rtgui\widgets\progressbar.c $PROJ_DIR$\..\..\..\components\rtgui\common\rtgui_object.c - $PROJ_DIR$\..\..\..\components\rtgui\common\rtgui_xml.c - $PROJ_DIR$\..\..\..\components\rtgui\server\server.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\textview.c - $PROJ_DIR$\..\..\..\components\rtgui\widgets\workbench.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\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$\adc.c - $PROJ_DIR$\board.c $PROJ_DIR$\application.c + $PROJ_DIR$\board.c $PROJ_DIR$\cpuusage.c $PROJ_DIR$\info.c $PROJ_DIR$\key.c $PROJ_DIR$\lcd.c $PROJ_DIR$\led.c $PROJ_DIR$\startup.c - $PROJ_DIR$\Debug\Obj\listctrl.pbi - $PROJ_DIR$\Debug\Obj\notebook.pbi + $PROJ_DIR$\..\..\..\libcpu\arm\cortex-m3\cpuport.c + $PROJ_DIR$\..\CMSIS\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\mempool.c + $PROJ_DIR$\..\..\..\src\module.c + $PROJ_DIR$\..\..\..\src\object.c + $PROJ_DIR$\..\..\..\src\rtm.c + $PROJ_DIR$\..\..\..\src\slab.c + $PROJ_DIR$\..\..\..\src\scheduler.c + $PROJ_DIR$\..\..\..\src\thread.c + $PROJ_DIR$\..\..\..\src\timer.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\about_view.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\image_hdc.c + $PROJ_DIR$\..\..\..\libcpu\arm\cortex-m3\context_iar.S - BICOMP - 144 - - - ICCARM - 71 + AARM + 26 - $PROJ_DIR$\..\..\..\components\rtgui\common\image_xpm.c + $PROJ_DIR$\..\CMSIS\system_mb9bf50x.c + + ICCARM + 150 + BICOMP 147 + + - ICCARM - 74 + BICOMP + 132 131 183 182 181 146 127 128 129 133 134 135 136 - + - $PROJ_DIR$\..\..\..\components\rtgui\common\image_jpg.c + $PROJ_DIR$\..\CMSIS\core_cm3.c - BICOMP - 145 + ICCARM + 185 - ICCARM - 72 + BICOMP + 175 + + + BICOMP + 183 182 181 146 127 128 129 + + [ROOT_NODE] ILINK - 50 + 98 - $PROJ_DIR$\..\..\..\libcpu\arm\fm3\cpuport.c + $PROJ_DIR$\..\..\..\components\rtgui\common\dc_buffer.c - - BICOMP - 44 - ICCARM - 182 + 225 - - - - $PROJ_DIR$\..\..\..\libcpu\arm\fm3\context_iar.S - - AARM - 128 + BICOMP + 204 - $PROJ_DIR$\..\CMSIS\system_mb9bf50x.c + $PROJ_DIR$\..\..\..\components\rtgui\common\dc_client.c - BICOMP - 8 + ICCARM + 226 - ICCARM - 12 + BICOMP + 205 - $PROJ_DIR$\..\..\..\components\rtgui\widgets\about_view.c + $PROJ_DIR$\..\..\..\components\rtgui\common\dc_hw.c - BICOMP - 104 + ICCARM + 227 - ICCARM - 58 + BICOMP + 206 - $PROJ_DIR$\..\CMSIS\core_cm3.c + $PROJ_DIR$\..\..\..\components\rtgui\server\driver.c - BICOMP - 180 + ICCARM + 153 - ICCARM - 38 + BICOMP + 99 - $PROJ_DIR$\..\..\..\libcpu\arm\fm3\fault_iar.S + $PROJ_DIR$\..\..\..\components\rtgui\widgets\filelist_view.c - AARM - 129 + ICCARM + 110 - - - - $PROJ_DIR$\..\..\..\libcpu\arm\fm3\start_iar.S - - AARM - 39 + BICOMP + 7 - $PROJ_DIR$\..\..\..\src\clock.c + $PROJ_DIR$\..\..\..\components\rtgui\common\filerw.c - BICOMP - 177 + ICCARM + 228 - ICCARM - 49 + BICOMP + 207 - $PROJ_DIR$\..\..\..\src\device.c + $PROJ_DIR$\..\..\..\components\rtgui\common\font.c - BICOMP - 41 + ICCARM + 229 - ICCARM - 2 + BICOMP + 208 - $PROJ_DIR$\..\..\..\src\idle.c + $PROJ_DIR$\..\..\..\components\rtgui\common\font_bmp.c - BICOMP - 127 + ICCARM + 230 - ICCARM - 181 + BICOMP + 209 - $PROJ_DIR$\..\..\..\src\ipc.c + $PROJ_DIR$\..\..\..\components\rtgui\common\font_freetype.c - BICOMP - 183 + ICCARM + 231 - ICCARM - 176 + BICOMP + 210 - $PROJ_DIR$\..\..\..\src\irq.c + $PROJ_DIR$\..\..\..\components\rtgui\common\font_hz_bmp.c - BICOMP - 133 + ICCARM + 232 - ICCARM - 48 + BICOMP + 211 - $PROJ_DIR$\..\..\..\src\kservice.c + $PROJ_DIR$\..\..\..\components\rtgui\common\font_hz_file.c - BICOMP - 9 + ICCARM + 66 - ICCARM - 43 + BICOMP + 202 - $PROJ_DIR$\..\..\..\src\mem.c + $PROJ_DIR$\..\..\..\components\rtgui\common\framebuffer_driver.c - BICOMP - 34 + ICCARM + 112 - ICCARM + BICOMP 35 - $PROJ_DIR$\..\..\..\src\mempool.c + $PROJ_DIR$\..\..\..\components\rtgui\common\hz12font.c - BICOMP - 137 + ICCARM + 114 - ICCARM - 134 + BICOMP + 36 - $PROJ_DIR$\..\..\..\src\module.c + $PROJ_DIR$\..\..\..\components\rtgui\common\hz16font.c - BICOMP - 47 + ICCARM + 115 - ICCARM - 40 + BICOMP + 41 - $PROJ_DIR$\..\..\..\src\object.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\iconbox.c - BICOMP - 46 + ICCARM + 109 - ICCARM - 132 + BICOMP + 8 - $PROJ_DIR$\..\..\..\src\rtm.c + $PROJ_DIR$\..\..\..\components\rtgui\common\image.c - BICOMP - 11 + ICCARM + 116 - ICCARM - 94 + BICOMP + 42 - $PROJ_DIR$\..\..\..\src\scheduler.c + $PROJ_DIR$\..\..\..\components\rtgui\common\image_bmp.c - BICOMP - 130 + ICCARM + 117 - ICCARM - 178 + BICOMP + 43 - $PROJ_DIR$\..\..\..\src\slab.c + $PROJ_DIR$\..\..\..\components\rtgui\common\image_container.c - BICOMP - 36 + ICCARM + 118 - ICCARM - 148 + BICOMP + 44 - $PROJ_DIR$\..\..\..\src\thread.c + $PROJ_DIR$\..\..\..\components\rtgui\common\image_hdc.c - BICOMP - 95 + ICCARM + 119 - ICCARM - 1 + BICOMP + 45 - $PROJ_DIR$\..\..\..\src\timer.c + $PROJ_DIR$\..\..\..\components\rtgui\common\image_jpg.c - BICOMP - 136 + ICCARM + 120 - ICCARM - 96 + BICOMP + 46 - $PROJ_DIR$\..\..\..\components\rtgui\common\asc12font.c + $PROJ_DIR$\..\..\..\components\rtgui\common\image_png.c - BICOMP - 82 + ICCARM + 121 - ICCARM - 21 + BICOMP + 47 - $PROJ_DIR$\..\..\..\components\rtgui\common\asc16font.c + $PROJ_DIR$\..\..\..\components\rtgui\common\image_xpm.c - BICOMP - 81 + ICCARM + 122 - ICCARM - 17 + BICOMP + 48 - $PROJ_DIR$\..\..\..\components\rtgui\widgets\container.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\label.c - BICOMP - 158 + ICCARM + 243 - ICCARM - 63 + BICOMP + 10 - $PROJ_DIR$\..\..\..\components\rtgui\common\blit.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\list_view.c - BICOMP - 65 + ICCARM + 58 - ICCARM - 19 + BICOMP + 249 - $PROJ_DIR$\..\..\..\components\rtgui\widgets\box.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\listbox.c - BICOMP - 166 + ICCARM + 60 - ICCARM - 55 + BICOMP + 246 - $PROJ_DIR$\..\..\..\components\rtgui\widgets\button.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\listctrl.c - BICOMP - 172 + ICCARM + 61 - ICCARM - 57 + BICOMP + 179 - $PROJ_DIR$\..\..\..\components\rtgui\widgets\checkbox.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\menu.c - BICOMP - 107 + ICCARM + 62 - ICCARM - 60 + BICOMP + 11 - $PROJ_DIR$\..\..\..\components\rtgui\common\color.c + $PROJ_DIR$\..\..\..\components\rtgui\server\mouse.c - BICOMP - 83 + ICCARM + 154 - ICCARM - 20 + BICOMP + 4 - $PROJ_DIR$\..\..\..\components\rtgui\widgets\combobox.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\notebook.c - BICOMP - 106 + ICCARM + 101 - ICCARM - 52 + BICOMP + 180 - $PROJ_DIR$\..\..\..\components\rtgui\common\dc.c + $PROJ_DIR$\..\..\..\components\rtgui\server\panel.c - BICOMP - 85 + ICCARM + 107 - ICCARM - 23 + BICOMP + 174 - $PROJ_DIR$\..\..\..\components\rtgui\common\dc_buffer.c + $PROJ_DIR$\..\..\..\components\rtgui\common\pixel_driver.c - BICOMP - 86 + ICCARM + 193 - ICCARM - 24 + BICOMP + 223 - $PROJ_DIR$\..\..\..\components\rtgui\widgets\filelist_view.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\progressbar.c - BICOMP - 109 + ICCARM + 63 - ICCARM - 62 + BICOMP + 14 - $PROJ_DIR$\..\..\..\components\rtgui\common\dc_client.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\radiobox.c - BICOMP - 87 + ICCARM + 159 - ICCARM - 25 + BICOMP + 9 - $PROJ_DIR$\..\..\..\components\rtgui\common\dc_hw.c + $PROJ_DIR$\..\..\..\components\rtgui\common\region.c - BICOMP - 88 + ICCARM + 194 - ICCARM - 26 + BICOMP + 239 - $PROJ_DIR$\..\..\..\components\rtgui\server\driver.c + $PROJ_DIR$\..\..\..\components\rtgui\common\rtgui_object.c - BICOMP - 51 + ICCARM + 195 - ICCARM - 15 + BICOMP + 240 - $PROJ_DIR$\..\..\..\components\rtgui\common\filerw.c + $PROJ_DIR$\..\..\..\components\rtgui\common\rtgui_system.c - BICOMP - 89 + ICCARM + 196 - ICCARM - 27 + BICOMP + 238 - $PROJ_DIR$\..\..\..\components\rtgui\common\font.c + $PROJ_DIR$\..\..\..\components\rtgui\common\rtgui_theme.c - BICOMP - 90 + ICCARM + 197 - ICCARM - 28 + BICOMP + 241 - $PROJ_DIR$\..\..\..\components\rtgui\common\font_freetype.c + $PROJ_DIR$\..\..\..\components\rtgui\common\rtgui_xml.c - BICOMP - 92 + ICCARM + 198 - ICCARM - 30 + BICOMP + 242 - $PROJ_DIR$\..\..\..\components\rtgui\common\font_bmp.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\scrollbar.c - BICOMP - 91 + ICCARM + 244 - ICCARM - 29 + BICOMP + 13 - $PROJ_DIR$\..\..\..\components\rtgui\common\framebuffer_driver.c + $PROJ_DIR$\..\..\..\components\rtgui\server\server.c - BICOMP - 138 + ICCARM + 151 - ICCARM - 64 + BICOMP + 102 - $PROJ_DIR$\..\..\..\components\rtgui\common\hz12font.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\slider.c - BICOMP - 139 + ICCARM + 160 - ICCARM - 66 + BICOMP + 15 - $PROJ_DIR$\..\..\..\components\rtgui\common\font_hz_bmp.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\staticline.c - BICOMP - 93 + ICCARM + 162 - ICCARM - 31 + BICOMP + 16 - $PROJ_DIR$\..\..\..\components\rtgui\common\font_hz_file.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\textbox.c - BICOMP - 84 + ICCARM + 163 - ICCARM + BICOMP 18 - $PROJ_DIR$\..\..\..\components\rtgui\common\image_container.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\textview.c - BICOMP - 143 + ICCARM + 164 - ICCARM - 70 + BICOMP + 19 - $PROJ_DIR$\..\..\..\components\rtgui\common\hz16font.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\title.c - BICOMP - 140 + ICCARM + 165 - ICCARM - 67 + BICOMP + 20 - $PROJ_DIR$\..\..\..\components\rtgui\widgets\iconbox.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\toplevel.c - BICOMP - 110 + ICCARM + 166 - ICCARM - 61 + BICOMP + 21 - $PROJ_DIR$\..\..\..\components\rtgui\common\image.c + $PROJ_DIR$\..\..\..\components\rtgui\server\topwin.c - BICOMP - 141 + ICCARM + 152 - ICCARM - 68 + BICOMP + 104 - $PROJ_DIR$\..\..\..\components\rtgui\common\image_bmp.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\view.c - BICOMP - 142 + ICCARM + 64 - ICCARM - 69 + BICOMP + 17 - $PROJ_DIR$\..\..\..\components\rtgui\common\image_png.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\widget.c - BICOMP - 146 + ICCARM + 168 - ICCARM - 73 + BICOMP + 12 - $PROJ_DIR$\..\..\..\components\rtgui\widgets\label.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\window.c - BICOMP - 112 + ICCARM + 169 - ICCARM - 102 + BICOMP + 22 - $PROJ_DIR$\..\..\..\components\rtgui\widgets\list_view.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\workbench.c - BICOMP - 108 + ICCARM + 170 - ICCARM - 157 + BICOMP + 23 - $PROJ_DIR$\..\..\..\components\rtgui\widgets\listbox.c + $PROJ_DIR$\adc.c - BICOMP - 105 + ICCARM + 32 - ICCARM - 159 + BICOMP + 54 - $PROJ_DIR$\..\..\..\components\rtgui\widgets\listctrl.c + $PROJ_DIR$\application.c - BICOMP - 273 + ICCARM + 28 - ICCARM - 160 + BICOMP + 189 - $PROJ_DIR$\..\..\..\components\rtgui\common\pixel_driver.c + $PROJ_DIR$\board.c - BICOMP - 22 + ICCARM + 192 - ICCARM - 75 + BICOMP + 148 - $PROJ_DIR$\..\..\..\components\rtgui\widgets\menu.c + $PROJ_DIR$\cpuusage.c - BICOMP - 113 + ICCARM + 51 - ICCARM - 161 + BICOMP + 234 - $PROJ_DIR$\..\..\..\components\rtgui\server\mouse.c + $PROJ_DIR$\info.c - BICOMP - 7 + ICCARM + 3 - ICCARM - 16 + BICOMP + 55 - $PROJ_DIR$\..\..\..\components\rtgui\widgets\notebook.c + $PROJ_DIR$\key.c - BICOMP - 274 + ICCARM + 52 - ICCARM - 53 + BICOMP + 57 - $PROJ_DIR$\..\..\..\components\rtgui\server\panel.c + $PROJ_DIR$\lcd.c - BICOMP - 179 + ICCARM + 53 - ICCARM - 59 + BICOMP + 56 - $PROJ_DIR$\..\..\..\components\rtgui\widgets\radiobox.c + $PROJ_DIR$\led.c - BICOMP - 111 + ICCARM + 184 - ICCARM - 164 + BICOMP + 233 - $PROJ_DIR$\..\..\..\components\rtgui\common\region.c + $PROJ_DIR$\startup.c - BICOMP - 98 + ICCARM + 24 - ICCARM - 76 + BICOMP + 2 - $PROJ_DIR$\..\..\..\components\rtgui\widgets\progressbar.c + $PROJ_DIR$\..\..\..\libcpu\arm\cortex-m3\cpuport.c - BICOMP - 116 + ICCARM + 177 - ICCARM - 162 + BICOMP + 191 + + + BICOMP + 137 144 139 141 182 181 146 127 128 129 140 + + - $PROJ_DIR$\..\..\..\components\rtgui\common\rtgui_object.c + $PROJ_DIR$\..\CMSIS\start_iar.S - BICOMP - 99 + AARM + 186 + + + + $PROJ_DIR$\..\..\..\src\clock.c + ICCARM - 77 + 97 + + + BICOMP + 172 + + + BICOMP + 138 137 144 139 141 182 181 146 127 128 129 140 + + - $PROJ_DIR$\..\..\..\components\rtgui\common\rtgui_xml.c + $PROJ_DIR$\..\..\..\src\device.c - BICOMP - 101 + ICCARM + 156 - ICCARM - 80 + BICOMP + 188 + + + BICOMP + 137 144 139 141 182 181 146 127 128 129 140 142 + + - $PROJ_DIR$\..\..\..\components\rtgui\server\server.c + $PROJ_DIR$\..\..\..\src\idle.c - BICOMP - 54 + ICCARM + 176 - ICCARM - 13 + BICOMP + 25 + + + BICOMP + 138 137 144 139 141 182 181 146 127 128 129 140 142 + + - $PROJ_DIR$\..\..\..\components\rtgui\common\rtgui_system.c + $PROJ_DIR$\..\..\..\src\ipc.c - BICOMP - 97 + ICCARM + 171 - ICCARM - 78 + BICOMP + 178 + + + BICOMP + 137 144 139 141 182 181 146 127 128 129 140 138 142 + + - $PROJ_DIR$\..\..\..\components\rtgui\common\rtgui_theme.c + $PROJ_DIR$\..\..\..\src\irq.c - BICOMP - 100 + ICCARM + 96 - ICCARM - 79 + BICOMP + 30 + + + BICOMP + 138 137 144 139 141 182 181 146 127 128 129 140 + + - $PROJ_DIR$\..\..\..\components\rtgui\widgets\scrollbar.c + $PROJ_DIR$\..\..\..\src\kservice.c - BICOMP - 115 + ICCARM + 190 - ICCARM - 103 + BICOMP + 145 + + + BICOMP + 137 144 139 141 182 181 146 127 128 129 140 138 + + - $PROJ_DIR$\..\..\..\components\rtgui\widgets\slider.c + $PROJ_DIR$\..\..\..\src\mem.c - BICOMP - 117 + ICCARM + 236 - ICCARM - 165 + BICOMP + 235 + + + BICOMP + 138 137 144 139 141 182 181 146 127 128 129 140 + + - $PROJ_DIR$\..\..\..\components\rtgui\widgets\staticline.c + $PROJ_DIR$\..\..\..\src\mempool.c - BICOMP - 118 + ICCARM + 31 - ICCARM - 167 + BICOMP + 34 + + + BICOMP + 138 137 144 139 141 182 181 146 127 128 129 140 142 + + - $PROJ_DIR$\..\..\..\components\rtgui\widgets\textbox.c + $PROJ_DIR$\..\..\..\src\module.c - BICOMP - 120 + ICCARM + 187 - ICCARM - 168 + BICOMP + 95 + + + BICOMP + 138 137 144 139 141 182 181 146 127 128 129 140 126 157 218 158 142 + + - $PROJ_DIR$\..\..\..\components\rtgui\widgets\textview.c + $PROJ_DIR$\..\..\..\src\object.c - BICOMP - 121 + ICCARM + 29 - ICCARM - 169 + BICOMP + 92 + + + BICOMP + 137 144 139 141 182 181 146 127 128 129 140 138 142 + + - $PROJ_DIR$\..\..\..\components\rtgui\widgets\workbench.c + $PROJ_DIR$\..\..\..\src\rtm.c - BICOMP - 125 + ICCARM + 212 - ICCARM - 175 + BICOMP + 149 + + + BICOMP + 137 144 139 141 182 181 146 127 128 129 140 125 155 218 157 158 124 123 + + - $PROJ_DIR$\..\..\..\components\rtgui\widgets\title.c + $PROJ_DIR$\..\..\..\src\slab.c - BICOMP - 122 + ICCARM + 49 - ICCARM - 170 + BICOMP + 237 + + + BICOMP + 138 137 144 139 141 182 181 146 127 128 129 140 142 + + - $PROJ_DIR$\..\..\..\components\rtgui\widgets\toplevel.c + $PROJ_DIR$\..\..\..\src\scheduler.c - BICOMP - 123 + ICCARM + 173 - ICCARM - 171 + BICOMP + 27 + + + BICOMP + 137 144 139 141 182 181 146 127 128 129 140 138 142 + + - $PROJ_DIR$\..\..\..\components\rtgui\server\topwin.c + $PROJ_DIR$\..\..\..\src\thread.c - BICOMP - 56 + ICCARM + 1 - ICCARM - 14 + BICOMP + 213 + + + BICOMP + 137 144 139 141 182 181 146 127 128 129 140 138 142 + + - $PROJ_DIR$\..\..\..\components\rtgui\widgets\view.c + $PROJ_DIR$\..\..\..\src\timer.c - BICOMP - 119 + ICCARM + 214 - ICCARM - 163 + BICOMP + 33 + + + BICOMP + 137 144 139 141 182 181 146 127 128 129 140 138 142 + + - $PROJ_DIR$\..\..\..\components\rtgui\widgets\widget.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\about_view.c - BICOMP - 114 + ICCARM + 106 - ICCARM - 173 + BICOMP + 245 + + + BICOMP + 130 70 137 144 139 141 182 181 146 127 128 129 140 37 143 84 94 40 38 93 39 91 89 90 85 83 88 82 87 86 80 76 79 78 81 74 75 73 77 69 71 72 68 + + - $PROJ_DIR$\..\..\..\components\rtgui\widgets\window.c + $PROJ_DIR$\..\..\..\components\rtgui\common\asc12font.c - BICOMP - 124 + ICCARM + 222 - ICCARM - 174 + BICOMP + 200 + + + BICOMP + 90 70 137 144 139 141 182 181 146 127 128 129 140 37 143 94 85 + + - $PROJ_DIR$\adc.c + $PROJ_DIR$\..\..\..\components\rtgui\common\asc16font.c - BICOMP - 153 + ICCARM + 65 - ICCARM - 135 + BICOMP + 199 + + + BICOMP + 90 70 137 144 139 141 182 181 146 127 128 129 140 37 143 94 85 + + - $PROJ_DIR$\board.c + $PROJ_DIR$\..\..\..\components\rtgui\common\blit.c - BICOMP - 10 + ICCARM + 67 - ICCARM - 45 + BICOMP + 113 + + + BICOMP + 70 137 144 139 141 182 181 146 127 128 129 140 37 143 217 + + - $PROJ_DIR$\application.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\box.c - BICOMP - 42 + ICCARM + 103 - ICCARM - 131 + BICOMP + 161 + + + BICOMP + 82 70 137 144 139 141 182 181 146 127 128 129 140 37 143 90 94 85 87 89 38 93 39 91 72 68 + + - $PROJ_DIR$\cpuusage.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\button.c - BICOMP - 33 + ICCARM + 105 - ICCARM - 150 + BICOMP + 167 + + + BICOMP + 82 70 137 144 139 141 182 181 146 127 128 129 140 37 143 90 94 85 87 89 38 93 39 91 130 84 40 83 88 86 80 76 79 78 81 74 75 73 216 68 + + - $PROJ_DIR$\info.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\checkbox.c - BICOMP - 154 + ICCARM + 108 - ICCARM - 3 + BICOMP + 248 + + + BICOMP + 82 70 137 144 139 141 182 181 146 127 128 129 140 37 143 90 94 85 87 89 38 93 39 91 130 84 40 83 88 86 80 76 79 78 81 74 75 73 + + - $PROJ_DIR$\key.c + $PROJ_DIR$\..\..\..\components\rtgui\common\color.c - BICOMP - 156 + ICCARM + 221 - ICCARM - 151 + BICOMP + 201 + + + BICOMP + 89 70 137 144 139 141 182 181 146 127 128 129 140 37 143 + + - $PROJ_DIR$\lcd.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\combobox.c - BICOMP - 155 + ICCARM + 100 - ICCARM - 152 + BICOMP + 247 + + + BICOMP + 82 70 137 144 139 141 182 181 146 127 128 129 140 37 143 90 94 85 87 89 38 93 39 91 130 84 40 83 88 86 80 76 79 78 81 74 75 73 219 215 216 68 72 220 69 + + - $PROJ_DIR$\led.c + $PROJ_DIR$\..\..\..\components\rtgui\widgets\container.c - BICOMP - 32 + ICCARM + 111 - ICCARM - 37 + BICOMP + 59 + + + BICOMP + 216 68 38 70 137 144 139 141 182 181 146 127 128 129 140 37 143 94 93 39 91 89 90 85 + + - $PROJ_DIR$\startup.c + $PROJ_DIR$\..\..\..\components\rtgui\common\dc.c - BICOMP - 0 + ICCARM + 224 - ICCARM - 126 + BICOMP + 203 + + + BICOMP + 82 70 137 144 139 141 182 181 146 127 128 129 140 37 143 90 94 85 87 89 38 93 39 91 69 157 218 158 155 0 0 0 + + diff --git a/bsp/fm3/mb9bf500r/fm3_easy_kit.ewp b/bsp/fm3/mb9bf500r/fm3_easy_kit.ewp index 4a9a8aad4f0f748a7c8d2192933d88558aa92b1e..3d27059c06ddebd3a14d2265d9b2334c07a5d1aa 100644 --- a/bsp/fm3/mb9bf500r/fm3_easy_kit.ewp +++ b/bsp/fm3/mb9bf500r/fm3_easy_kit.ewp @@ -30,7 +30,7 @@