V1.0
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
[BREAKPOINTS]
|
||||
ForceImpTypeAny = 0
|
||||
ShowInfoWin = 1
|
||||
EnableFlashBP = 2
|
||||
BPDuringExecution = 0
|
||||
[CFI]
|
||||
CFISize = 0x00
|
||||
CFIAddr = 0x00
|
||||
[CPU]
|
||||
MonModeVTableAddr = 0xFFFFFFFF
|
||||
MonModeDebug = 0
|
||||
MaxNumAPs = 0
|
||||
LowPowerHandlingMode = 0
|
||||
OverrideMemMap = 0
|
||||
AllowSimulation = 1
|
||||
ScriptFile=""
|
||||
[FLASH]
|
||||
CacheExcludeSize = 0x00
|
||||
CacheExcludeAddr = 0x00
|
||||
MinNumBytesFlashDL = 0
|
||||
SkipProgOnCRCMatch = 1
|
||||
VerifyDownload = 1
|
||||
AllowCaching = 1
|
||||
EnableFlashDL = 2
|
||||
Override = 0
|
||||
Device="ARM7"
|
||||
[GENERAL]
|
||||
WorkRAMSize = 0x00
|
||||
WorkRAMAddr = 0x00
|
||||
RAMUsageLimit = 0x00
|
||||
[SWO]
|
||||
SWOLogFile=""
|
||||
[MEM]
|
||||
RdOverrideOrMask = 0x00
|
||||
RdOverrideAndMask = 0xFFFFFFFF
|
||||
RdOverrideAddr = 0xFFFFFFFF
|
||||
WrOverrideOrMask = 0x00
|
||||
WrOverrideAndMask = 0xFFFFFFFF
|
||||
WrOverrideAddr = 0xFFFFFFFF
|
||||
@@ -0,0 +1,12 @@
|
||||
|
||||
FUNC void Initialization(void)
|
||||
{
|
||||
SP = _RDWORD(0x10000000);
|
||||
PC = _RDWORD(0x10000004);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
LOAD %L INCREMENTAL
|
||||
Initialization();
|
||||
@@ -0,0 +1,84 @@
|
||||
|
||||
|
||||
|
||||
FUNC void InitGpio(void)
|
||||
{
|
||||
// Config IOMUX
|
||||
/*
|
||||
gpio_mux_ctl_u(33,1);//d2
|
||||
gpio_mux_ctl_u(34,1);//d3
|
||||
gpio_mux_ctl_u(35,2);//clk
|
||||
gpio_mux_ctl_u(36,2);//cs
|
||||
gpio_mux_ctl_u(37,2);//d0 rx
|
||||
gpio_mux_ctl_u(38,2);//d1 tx
|
||||
*/
|
||||
_WDWORD(0x4000019c, 0x00002A94);
|
||||
}
|
||||
FUNC void InitFlash(void)
|
||||
{
|
||||
|
||||
}
|
||||
FUNC void InitXIP(void)
|
||||
{
|
||||
|
||||
_WDWORD(0x40000104,0x040000);//reset ssi0
|
||||
_WDWORD(0x40000104,0x040004);//reset ssi0
|
||||
_WDWORD(0x40000050,0x110000);//close spi0 mclk
|
||||
_WDWORD(0x40000070,0x1000000);//close spi0 pclk
|
||||
|
||||
|
||||
//config fmc
|
||||
_WDWORD(0x40000270, 0x0503);
|
||||
_Sleep_(1);// delay about 400us
|
||||
_WDWORD(0x40000270, 0x3503);
|
||||
//config cache
|
||||
_Sleep_(1);// delay about 400us
|
||||
_WDWORD(0x52000000, 0x0);
|
||||
_Sleep_(1);// delay about 400us
|
||||
_WDWORD(0x52000000, 0x21);
|
||||
_Sleep_(1);// delay about 400us
|
||||
_Sleep_(1);// delay about 400us
|
||||
_Sleep_(1);// delay about 400us
|
||||
_Sleep_(1);// delay about 400us
|
||||
|
||||
|
||||
//config xip spi
|
||||
_WDWORD(0x51000008, 0); //disable spi
|
||||
|
||||
_WDWORD(0x5100002c,0); //close IE
|
||||
_WDWORD(0x51000000,0x1F); //32bit SPI data
|
||||
_WDWORD(0x51000010,0x01); //enable select slave -- SE
|
||||
_WDWORD(0x51000018,0x0); //TXFTL be set 0
|
||||
_WDWORD(0x5100001c,0x0); //RXFTL be set 0
|
||||
|
||||
_WDWORD(0x5100010c, 0x01);//enable select slave
|
||||
_WDWORD(0x51000114, 0xFF);//XIP time out
|
||||
|
||||
_WDWORD(0x51000014, 0x2);//div 2
|
||||
|
||||
//quad
|
||||
// _WDWORD(0x51000108, (2)|(6<<4)|(2<<9)|(1<<22)|(1<<29)|(1<<23)|(0<<24)|(8<<13));
|
||||
// _WDWORD(0x51000100, 0x6b);//quad read cmd
|
||||
// _WDWORD(0x51000104, 0x6b);//quad read cmd
|
||||
|
||||
|
||||
//dual
|
||||
_WDWORD(0x51000108, (1)|(6<<4)|(2<<9)|(1<<22)|(1<<29)|(1<<23)|(0)|(8<<13));
|
||||
_WDWORD(0x51000100, 0x3b);//dual read cmd
|
||||
_WDWORD(0x51000104, 0x3b);//dual read cmd
|
||||
|
||||
|
||||
_WDWORD(0x51000008, 1); //enable spi
|
||||
}
|
||||
|
||||
FUNC void Initialization(void)
|
||||
{
|
||||
InitGpio();
|
||||
InitFlash();
|
||||
InitXIP();
|
||||
SP = _RDWORD(0x11001000);
|
||||
PC = _RDWORD(0x11001004);
|
||||
_WDWORD(0x4000013C, 0x11001001);
|
||||
}
|
||||
LOAD %L INCREMENTAL
|
||||
Initialization();
|
||||
@@ -0,0 +1,131 @@
|
||||
;;;
|
||||
;;;
|
||||
|
||||
|
||||
;;LOAD 0x10000000
|
||||
;;{
|
||||
;;EXE 0x10000000
|
||||
;;{
|
||||
;;startup_xinc.o (RESET, +FIRST)
|
||||
;;* (+RO)
|
||||
|
||||
;;}
|
||||
;;; L2CAP_CODE +0
|
||||
;;; {
|
||||
;;; * (l2cap_code)
|
||||
;;; }
|
||||
;;; GATT_CODE +0
|
||||
;;; {
|
||||
;;; * (gatt_code)
|
||||
;;; }
|
||||
;;; GAP_CODE +0
|
||||
;;; {
|
||||
;;; * (gap_code)
|
||||
;;; }
|
||||
;;; LLC_CODE +0
|
||||
;;; {
|
||||
;;; * (llc_code)
|
||||
;;; }
|
||||
;;; LLD_CODE +0
|
||||
;;; {
|
||||
;;; * (lld_code)
|
||||
;;; }
|
||||
;;;
|
||||
;;; LLM_CODE +0
|
||||
;;; {
|
||||
;;; * (llm_code)
|
||||
;;; }
|
||||
;;; ECC_CODE +0
|
||||
;;; {
|
||||
;;; * (ecc_code)
|
||||
;;; }
|
||||
;;RW +0000
|
||||
;;{
|
||||
;;* (+RW,+ZI)
|
||||
;;}
|
||||
|
||||
;;; KE_CODE +0
|
||||
;;; {
|
||||
;;; *(ke_code)
|
||||
;;;
|
||||
;;; }
|
||||
|
||||
;;; AES_CODE +0
|
||||
;;; {
|
||||
;;; * (aes_code)
|
||||
;;; }
|
||||
;;; CO_CODE +0
|
||||
;;; {
|
||||
;;; * (co_code)
|
||||
;;; }
|
||||
;;;
|
||||
;;; NVDS_CODE +0
|
||||
;;; {
|
||||
;;; * (nvds_code)
|
||||
;;; }
|
||||
;;;
|
||||
;;; SCH_CODE +0
|
||||
;;; {
|
||||
;;; * (sch_code)
|
||||
;;; }
|
||||
;;; LL_CO_CODE +0
|
||||
;;; {
|
||||
;;; * (ll_co_code)
|
||||
;;; }
|
||||
|
||||
;;ScatterAssert(ImageLength(RW) < 1024 * 28)
|
||||
;;;
|
||||
;;;
|
||||
;;; ScatterAssert(ImageLength(KE_CODE) < 100)
|
||||
;;; ScatterAssert(ImageLength(ECC_CODE) < 0x100)
|
||||
;;; ScatterAssert(ImageLength(AES_CODE) < 0x10)
|
||||
;;; ScatterAssert(ImageLength(CO_CODE) < 0x100)
|
||||
;;; ScatterAssert(ImageLength(NVDS_CODE) < 0x100)
|
||||
;;; ScatterAssert(ImageLength(GAP_CODE) < 0x100)
|
||||
;;; ScatterAssert(ImageLength(GATT_CODE) < 0x100)
|
||||
;;; ScatterAssert(ImageLength(L2CAP_CODE) < 0x100)
|
||||
;;; ScatterAssert(ImageLength(SCH_CODE) < 0x100)
|
||||
;;; ScatterAssert(ImageLength(LL_CO_CODE) < 0x100)
|
||||
;;; ScatterAssert(ImageLength(LLC_CODE) < 0x110)
|
||||
;;; ScatterAssert(ImageLength(LLD_CODE) < 0x1210)
|
||||
;;; ScatterAssert(ImageLength(LLM_CODE) < 0x910)
|
||||
;;; ScatterAssert(ImageLength(EXE)+ ImageLength(RW) + ImageLength(KE_CODE) + ImageLength(ECC_CODE) + ImageLength(AES_CODE)
|
||||
;;; + ImageLength(CO_CODE)+ ImageLength(NVDS_CODE)+ ImageLength(GAP_CODE)+ ImageLength(GATT_CODE)
|
||||
;;; + ImageLength(L2CAP_CODE)+ ImageLength(SCH_CODE)+ ImageLength(LL_CO_CODE)+ ImageLength(LLC_CODE)
|
||||
;;; + ImageLength(LLD_CODE)+ ImageLength(LLM_CODE)< 96*1024)
|
||||
;;}
|
||||
|
||||
LOAD 0x10000000
|
||||
{
|
||||
EXE 0x10000000
|
||||
{
|
||||
startup_xinc.o (RESET, +FIRST)
|
||||
* (+RO)
|
||||
|
||||
}
|
||||
|
||||
RW +0000
|
||||
{
|
||||
* (+RW,+ZI)
|
||||
}
|
||||
|
||||
ScatterAssert(ImageLength(RW) < 1024 * 28)
|
||||
}
|
||||
|
||||
|
||||
|
||||
;LOAD 0x11001000
|
||||
;{
|
||||
;EXE 0x11001000
|
||||
;{
|
||||
;startup_xinc.o (RESET, +FIRST)
|
||||
;* (+RO)
|
||||
|
||||
;}
|
||||
|
||||
;RW 0x10002000
|
||||
;{
|
||||
;* (+RW,+ZI)
|
||||
;*(ram_code)
|
||||
;}
|
||||
;}
|
||||
@@ -0,0 +1,131 @@
|
||||
;;;
|
||||
;;;
|
||||
|
||||
|
||||
;;LOAD 0x10000000
|
||||
;;{
|
||||
;;EXE 0x10000000
|
||||
;;{
|
||||
;;startup_xinc.o (RESET, +FIRST)
|
||||
;;* (+RO)
|
||||
|
||||
;;}
|
||||
;;; L2CAP_CODE +0
|
||||
;;; {
|
||||
;;; * (l2cap_code)
|
||||
;;; }
|
||||
;;; GATT_CODE +0
|
||||
;;; {
|
||||
;;; * (gatt_code)
|
||||
;;; }
|
||||
;;; GAP_CODE +0
|
||||
;;; {
|
||||
;;; * (gap_code)
|
||||
;;; }
|
||||
;;; LLC_CODE +0
|
||||
;;; {
|
||||
;;; * (llc_code)
|
||||
;;; }
|
||||
;;; LLD_CODE +0
|
||||
;;; {
|
||||
;;; * (lld_code)
|
||||
;;; }
|
||||
;;;
|
||||
;;; LLM_CODE +0
|
||||
;;; {
|
||||
;;; * (llm_code)
|
||||
;;; }
|
||||
;;; ECC_CODE +0
|
||||
;;; {
|
||||
;;; * (ecc_code)
|
||||
;;; }
|
||||
;;RW +0000
|
||||
;;{
|
||||
;;* (+RW,+ZI)
|
||||
;;}
|
||||
|
||||
;;; KE_CODE +0
|
||||
;;; {
|
||||
;;; *(ke_code)
|
||||
;;;
|
||||
;;; }
|
||||
|
||||
;;; AES_CODE +0
|
||||
;;; {
|
||||
;;; * (aes_code)
|
||||
;;; }
|
||||
;;; CO_CODE +0
|
||||
;;; {
|
||||
;;; * (co_code)
|
||||
;;; }
|
||||
;;;
|
||||
;;; NVDS_CODE +0
|
||||
;;; {
|
||||
;;; * (nvds_code)
|
||||
;;; }
|
||||
;;;
|
||||
;;; SCH_CODE +0
|
||||
;;; {
|
||||
;;; * (sch_code)
|
||||
;;; }
|
||||
;;; LL_CO_CODE +0
|
||||
;;; {
|
||||
;;; * (ll_co_code)
|
||||
;;; }
|
||||
|
||||
;;ScatterAssert(ImageLength(RW) < 1024 * 28)
|
||||
;;;
|
||||
;;;
|
||||
;;; ScatterAssert(ImageLength(KE_CODE) < 100)
|
||||
;;; ScatterAssert(ImageLength(ECC_CODE) < 0x100)
|
||||
;;; ScatterAssert(ImageLength(AES_CODE) < 0x10)
|
||||
;;; ScatterAssert(ImageLength(CO_CODE) < 0x100)
|
||||
;;; ScatterAssert(ImageLength(NVDS_CODE) < 0x100)
|
||||
;;; ScatterAssert(ImageLength(GAP_CODE) < 0x100)
|
||||
;;; ScatterAssert(ImageLength(GATT_CODE) < 0x100)
|
||||
;;; ScatterAssert(ImageLength(L2CAP_CODE) < 0x100)
|
||||
;;; ScatterAssert(ImageLength(SCH_CODE) < 0x100)
|
||||
;;; ScatterAssert(ImageLength(LL_CO_CODE) < 0x100)
|
||||
;;; ScatterAssert(ImageLength(LLC_CODE) < 0x110)
|
||||
;;; ScatterAssert(ImageLength(LLD_CODE) < 0x1210)
|
||||
;;; ScatterAssert(ImageLength(LLM_CODE) < 0x910)
|
||||
;;; ScatterAssert(ImageLength(EXE)+ ImageLength(RW) + ImageLength(KE_CODE) + ImageLength(ECC_CODE) + ImageLength(AES_CODE)
|
||||
;;; + ImageLength(CO_CODE)+ ImageLength(NVDS_CODE)+ ImageLength(GAP_CODE)+ ImageLength(GATT_CODE)
|
||||
;;; + ImageLength(L2CAP_CODE)+ ImageLength(SCH_CODE)+ ImageLength(LL_CO_CODE)+ ImageLength(LLC_CODE)
|
||||
;;; + ImageLength(LLD_CODE)+ ImageLength(LLM_CODE)< 96*1024)
|
||||
;;}
|
||||
|
||||
;LOAD 0x10000000
|
||||
;{
|
||||
;EXE 0x10000000
|
||||
;{
|
||||
;startup_xinc.o (RESET, +FIRST)
|
||||
;* (+RO)
|
||||
|
||||
;}
|
||||
|
||||
;RW +0000
|
||||
;{
|
||||
;* (+RW,+ZI)
|
||||
;}
|
||||
|
||||
;ScatterAssert(ImageLength(RW) < 1024 * 28)
|
||||
;}
|
||||
|
||||
|
||||
|
||||
LOAD 0x11001000
|
||||
{
|
||||
EXE 0x11001000
|
||||
{
|
||||
startup_xinc.o (RESET, +FIRST)
|
||||
* (+RO)
|
||||
|
||||
}
|
||||
|
||||
RW 0x10002000
|
||||
{
|
||||
* (+RW,+ZI)
|
||||
*(ram_code)
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,989 @@
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 1
|
||||
|
||||
|
||||
1 00000000
|
||||
2 00000000 ;/******************************************************
|
||||
***********************
|
||||
3 00000000 ; * @file: startup_xinc.s
|
||||
4 00000000 ; * @purpose: CMSIS Cortex-M0 Core Device Startup File f
|
||||
or the
|
||||
5 00000000 ; * Device xinc.
|
||||
6 00000000 ; ******************************************************
|
||||
***********************/
|
||||
7 00000000
|
||||
8 00000000 00001000
|
||||
Stack_Size
|
||||
EQU 0x00001000
|
||||
9 00000000
|
||||
10 00000000 AREA STACK, NOINIT, READWRITE, ALIGN
|
||||
=3
|
||||
11 00000000 Stack_Mem
|
||||
SPACE Stack_Size
|
||||
12 00001000 __initial_sp
|
||||
13 00001000
|
||||
14 00001000 00000000
|
||||
Heap_Size
|
||||
EQU 0x00000000
|
||||
15 00001000
|
||||
16 00001000 AREA HEAP, NOINIT, READWRITE, ALIGN=
|
||||
3
|
||||
17 00000000 __heap_base
|
||||
18 00000000 Heap_Mem
|
||||
SPACE Heap_Size
|
||||
19 00000000 __heap_limit
|
||||
20 00000000
|
||||
21 00000000
|
||||
22 00000000 PRESERVE8
|
||||
23 00000000 THUMB
|
||||
24 00000000
|
||||
25 00000000 ; Vector Table Mapped to Address 0 at Reset
|
||||
26 00000000
|
||||
27 00000000 AREA RESET, DATA, READONLY
|
||||
28 00000000 EXPORT __Vectors
|
||||
29 00000000 EXPORT __Vectors_End
|
||||
30 00000000 EXPORT __Vectors_Size
|
||||
31 00000000
|
||||
32 00000000 00000000
|
||||
__Vectors
|
||||
DCD __initial_sp ; Top of Stack
|
||||
33 00000004 00000000 DCD Reset_Handler ; Reset Handler
|
||||
34 00000008 00000000 DCD NMI_Handler ; NMI Handler
|
||||
35 0000000C 00000000 DCD HardFault_Handler ; Hard Fault
|
||||
Handler
|
||||
36 00000010 00000000 DCD MemManage_Handler
|
||||
; MPU Fault Handler
|
||||
|
||||
37 00000014 00000000 DCD BusFault_Handler
|
||||
; Bus Fault Handler
|
||||
|
||||
38 00000018 00000000 DCD UsageFault_Handler ; Usage Faul
|
||||
t Handler
|
||||
39 0000001C 00000000 DCD 0 ; Reserved
|
||||
40 00000020 00000000 DCD 0 ; Reserved
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 2
|
||||
|
||||
|
||||
41 00000024 00000000 DCD 0 ; Reserved
|
||||
42 00000028 00000000 DCD 0 ; Reserved
|
||||
43 0000002C 00000000 DCD SVC_Handler ; SVCall Handler
|
||||
44 00000030 00000000 DCD DebugMon_Handler ; Debug Monito
|
||||
r Handler
|
||||
45 00000034 00000000 DCD 0 ; Reserved
|
||||
46 00000038 00000000 DCD PendSV_Handler ; PendSV Handler
|
||||
|
||||
47 0000003C 00000000 DCD SysTick_Handler
|
||||
; SysTick Handler
|
||||
48 00000040
|
||||
49 00000040 ; External Interrupts
|
||||
50 00000040 ; ToDo: Add here the vectors for the device specific ex
|
||||
ternal interrupts handler
|
||||
51 00000040 00000000 DCD BLE_Handler ; 0
|
||||
52 00000044 00000000 DCD DMA_Handler ; 1
|
||||
53 00000048 00000000 DCD CPR_Handler ; 2
|
||||
54 0000004C 00000000 DCD GPIO_Handler ; 3
|
||||
55 00000050 00000000 DCD RTC_Handler ; 4
|
||||
56 00000054 00000000 DCD TIMER0_Handler ; 5
|
||||
57 00000058 00000000 DCD TIMER1_Handler ; 6
|
||||
58 0000005C 00000000 DCD TIMER2_Handler ; 7
|
||||
59 00000060 00000000 DCD TIMER3_Handler ; 8
|
||||
60 00000064 00000000 DCD WDT_Handler ; 9
|
||||
61 00000068 00000000 DCD I2C_Handler ; 10
|
||||
62 0000006C 00000000 DCD UART0_Handler ; 11
|
||||
63 00000070 00000000 DCD UART1_Handler ; 12
|
||||
64 00000074 00000000 DCD SPI0_Handler ; 13
|
||||
65 00000078 00000000 DCD SPI1_Handler ; 14
|
||||
66 0000007C 00000000 DCD 0 ; 15
|
||||
67 00000080 00000000 DCD 0 ; 16
|
||||
68 00000084 00000000 DCD GADC_Handler ; 17
|
||||
69 00000088 00000000 DCD PWM_Handler ; 18
|
||||
70 0000008C 00000000 DCD AES_Handler ; 19
|
||||
71 00000090 00000000 DCD USB_Handler ; 20
|
||||
72 00000094 00000000 DCD AUDIO_Handler
|
||||
; 21
|
||||
|
||||
73 00000098 00000000 DCD RF24G_Handler ; 22
|
||||
74 0000009C 00000000 DCD SPI2_Handler ; 23
|
||||
75 000000A0 00000000 DCD 0 ; 24
|
||||
76 000000A4 00000000 DCD UART2_Handler ; 25
|
||||
77 000000A8 00000000 DCD I2S_Handler ; 26
|
||||
78 000000AC 00000000 DCD AOTIMER0_Handler ; 27
|
||||
79 000000B0 00000000 DCD AOTIMER1_Handler ; 28
|
||||
80 000000B4 00000000 DCD CMP_Handler ; 29
|
||||
81 000000B8 00000000 DCD FMC_Handler ; 30
|
||||
82 000000BC 00000000 DCD CAN_Handler ; 31
|
||||
83 000000C0
|
||||
84 000000C0 __Vectors_End
|
||||
85 000000C0
|
||||
86 000000C0 000000C0
|
||||
__Vectors_Size
|
||||
EQU __Vectors_End - __Vectors
|
||||
87 000000C0
|
||||
88 000000C0
|
||||
89 000000C0
|
||||
90 000000C0 AREA |.text|, CODE, READONLY
|
||||
91 00000000 ; Reset Handler
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 3
|
||||
|
||||
|
||||
92 00000000
|
||||
93 00000000 Reset_Handler
|
||||
PROC
|
||||
94 00000000
|
||||
95 00000000 EXPORT Reset_Handler [WEAK]
|
||||
96 00000000
|
||||
97 00000000 IMPORT SystemInit
|
||||
98 00000000 IMPORT __main
|
||||
99 00000000
|
||||
100 00000000 480F LDR r0, =0x4000013C ; remap
|
||||
101 00000002 4910 LDR r1, =0x10000001
|
||||
102 00000004 6001 STR r1, [r0]
|
||||
103 00000006
|
||||
104 00000006
|
||||
105 00000006
|
||||
106 00000006 4810 LDR R0, =SystemInit
|
||||
107 00000008 4780 BLX R0
|
||||
108 0000000A
|
||||
109 0000000A 4810 LDR R0, =__main
|
||||
110 0000000C 4700 BX R0
|
||||
111 0000000E
|
||||
112 0000000E ENDP
|
||||
113 0000000E
|
||||
114 0000000E ; Dummy Exception Handlers (infinite loops which can be
|
||||
modified)
|
||||
115 0000000E NMI_Handler
|
||||
PROC
|
||||
116 0000000E EXPORT NMI_Handler [WEAK
|
||||
]
|
||||
117 0000000E E7FE B .
|
||||
118 00000010 ENDP
|
||||
119 00000010
|
||||
120 00000010
|
||||
122 00000010 HardFault_Handler
|
||||
PROC
|
||||
123 00000010 IMPORT HardFault_Handler_c
|
||||
;函数声明
|
||||
124 00000010 2004 movs r0, #4 ;判æ–ä¸»æ ˆæŒ‡é’ˆ
|
||||
è¿˜æ˜¯è¿›ç¨‹æ ˆæŒ‡é
|
||||
’ˆ
|
||||
125 00000012 4671 mov r1, lr
|
||||
126 00000014 4208 tst r0, r1
|
||||
127 00000016 D003 beq hf_used_msp ;å¦‚æžœæ˜¯ä¸»æ ˆæŒ‡
|
||||
é’ˆ
|
||||
128 00000018 F3EF 8009 mrs r0, psp ;å�¦åˆ™æ˜¯è¿›ç¨‹æ ˆ
|
||||
指针,æŠŠè¿›ç¨‹æ ˆ
|
||||
指针地�付给
|
||||
R0
|
||||
129 0000001C 490C ldr r1, =HardFault_Handler_c ;è·³è½
|
||||
¬åˆ° HardFault 䏿
|
||||
–程åº�
|
||||
130 0000001E 4708 bx r1
|
||||
131 00000020 hf_used_msp
|
||||
132 00000020 F3EF 8008 mrs r0, msp ;æŠŠä¸»æ ˆæŒ‡é’ˆåœ°
|
||||
�赋给 R0
|
||||
133 00000024 490A ldr r1, =HardFault_Handler_c
|
||||
134 00000026 4708 bx r1
|
||||
135 00000028 ;EXPORT HardFault_Handler [WEAK]
|
||||
136 00000028 ;B .
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 4
|
||||
|
||||
|
||||
137 00000028 ENDP
|
||||
139 00000028 MemManage_Handler
|
||||
PROC
|
||||
140 00000028 EXPORT MemManage_Handler [WEAK
|
||||
]
|
||||
141 00000028 E7FE B .
|
||||
142 0000002A ENDP
|
||||
144 0000002A BusFault_Handler
|
||||
PROC
|
||||
145 0000002A EXPORT BusFault_Handler [WEAK
|
||||
]
|
||||
146 0000002A E7FE B .
|
||||
147 0000002C ENDP
|
||||
149 0000002C UsageFault_Handler
|
||||
PROC
|
||||
150 0000002C EXPORT UsageFault_Handler [WEAK
|
||||
]
|
||||
151 0000002C E7FE B .
|
||||
152 0000002E ENDP
|
||||
153 0000002E SVC_Handler
|
||||
PROC
|
||||
154 0000002E EXPORT SVC_Handler [WEAK
|
||||
]
|
||||
155 0000002E E7FE B .
|
||||
156 00000030 ENDP
|
||||
158 00000030 DebugMon_Handler
|
||||
PROC
|
||||
159 00000030 EXPORT DebugMon_Handler [WEAK
|
||||
]
|
||||
160 00000030 E7FE B .
|
||||
161 00000032 ENDP
|
||||
162 00000032
|
||||
163 00000032 Default_Handler
|
||||
PROC
|
||||
164 00000032 EXPORT BLE_Handler [WEAK
|
||||
]
|
||||
165 00000032 EXPORT DMA_Handler [WE
|
||||
AK]
|
||||
166 00000032 EXPORT CPR_Handler [WEAK]
|
||||
167 00000032 EXPORT GPIO_Handler [WEAK]
|
||||
168 00000032 EXPORT RTC_Handler [WEAK]
|
||||
169 00000032 EXPORT TIMER0_Handler [WEAK]
|
||||
170 00000032 EXPORT TIMER1_Handler [WEAK]
|
||||
171 00000032 EXPORT TIMER2_Handler [WEAK]
|
||||
172 00000032 EXPORT TIMER3_Handler [WEAK]
|
||||
173 00000032 EXPORT WDT_Handler [WE
|
||||
AK]
|
||||
174 00000032 EXPORT I2C_Handler [WEAK]
|
||||
175 00000032 EXPORT UART0_Handler [WEAK
|
||||
]
|
||||
176 00000032 EXPORT UART1_Handler [WE
|
||||
AK]
|
||||
177 00000032 EXPORT SPI0_Handler [WE
|
||||
AK]
|
||||
178 00000032 EXPORT SPI1_Handler [WE
|
||||
AK]
|
||||
179 00000032 ;EXPORT KBS_Handler [WEAK]
|
||||
180 00000032 ;EXPORT QDEC_Handler [WEAK]
|
||||
181 00000032 EXPORT GADC_Handler [WEAK]
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 5
|
||||
|
||||
|
||||
182 00000032 EXPORT PWM_Handler [WE
|
||||
AK]
|
||||
183 00000032 EXPORT AES_Handler [WE
|
||||
AK]
|
||||
184 00000032
|
||||
185 00000032 EXPORT PendSV_Handler [WEAK]
|
||||
186 00000032 EXPORT SysTick_Handler [WE
|
||||
AK]
|
||||
187 00000032
|
||||
188 00000032 EXPORT USB_Handler [WE
|
||||
AK]
|
||||
;20
|
||||
189 00000032 EXPORT AUDIO_Handler [WE
|
||||
AK]
|
||||
;21
|
||||
190 00000032 EXPORT RF24G_Handler [WE
|
||||
AK]
|
||||
;22
|
||||
191 00000032 EXPORT SPI2_Handler [WE
|
||||
AK]
|
||||
;23
|
||||
192 00000032 ;EXPORT MPU_Handler [WEAK];24
|
||||
193 00000032 EXPORT UART2_Handler [WE
|
||||
AK]
|
||||
;25
|
||||
194 00000032 EXPORT I2S_Handler [WE
|
||||
AK]
|
||||
;26
|
||||
195 00000032 EXPORT AOTIMER0_Handler [WE
|
||||
AK]
|
||||
;27
|
||||
196 00000032 EXPORT AOTIMER1_Handler [WE
|
||||
AK]
|
||||
;28
|
||||
197 00000032 EXPORT CMP_Handler [WE
|
||||
AK]
|
||||
;29
|
||||
198 00000032 EXPORT FMC_Handler [WE
|
||||
AK]
|
||||
;30
|
||||
199 00000032 EXPORT CAN_Handler [WE
|
||||
AK]
|
||||
;31
|
||||
200 00000032
|
||||
201 00000032 PendSV_Handler
|
||||
202 00000032 SysTick_Handler
|
||||
203 00000032 BLE_Handler
|
||||
204 00000032 RF24G_Handler
|
||||
205 00000032 DMA_Handler
|
||||
206 00000032 CPR_Handler
|
||||
207 00000032 GPIO_Handler
|
||||
208 00000032 RTC_Handler
|
||||
209 00000032 TIMER0_Handler
|
||||
210 00000032 TIMER1_Handler
|
||||
211 00000032 TIMER2_Handler
|
||||
212 00000032 TIMER3_Handler
|
||||
213 00000032 WDT_Handler
|
||||
214 00000032 I2C_Handler
|
||||
215 00000032 I2S_Handler
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 6
|
||||
|
||||
|
||||
216 00000032 UART0_Handler
|
||||
217 00000032 UART1_Handler
|
||||
218 00000032 UART2_Handler
|
||||
219 00000032 SPI0_Handler
|
||||
220 00000032 SPI1_Handler
|
||||
221 00000032 SPI2_Handler
|
||||
222 00000032 ;KBS_Handler
|
||||
223 00000032 ;QDEC_Handler
|
||||
224 00000032 GADC_Handler
|
||||
225 00000032 PWM_Handler
|
||||
226 00000032 AUDIO_Handler
|
||||
227 00000032 ;SIM_Handler
|
||||
228 00000032 AES_Handler
|
||||
229 00000032 AOTIMER0_Handler
|
||||
230 00000032 AOTIMER1_Handler
|
||||
231 00000032 CMP_Handler
|
||||
232 00000032 FMC_Handler
|
||||
233 00000032 CAN_Handler
|
||||
234 00000032 USB_Handler
|
||||
235 00000032
|
||||
236 00000032 E7FE B .
|
||||
237 00000034 ENDP
|
||||
238 00000034
|
||||
239 00000034
|
||||
240 00000034 ALIGN
|
||||
241 00000034
|
||||
242 00000034 ; User Initial Stack & Heap
|
||||
243 00000034
|
||||
244 00000034 IMPORT __use_two_region_memory
|
||||
245 00000034 EXPORT __user_initial_stackheap
|
||||
246 00000034 __user_initial_stackheap
|
||||
247 00000034
|
||||
248 00000034 4807 LDR R0, = Heap_Mem
|
||||
249 00000036 4908 LDR R1, = (Stack_Mem + Stack_Size)
|
||||
250 00000038 4A06 LDR R2, = (Heap_Mem + Heap_Size)
|
||||
251 0000003A 4B08 LDR R3, = Stack_Mem
|
||||
252 0000003C 4770 BX LR
|
||||
253 0000003E
|
||||
254 0000003E 00 00 ALIGN
|
||||
255 00000040
|
||||
256 00000040 END
|
||||
4000013C
|
||||
10000001
|
||||
00000000
|
||||
00000000
|
||||
00000000
|
||||
00000000
|
||||
00001000
|
||||
00000000
|
||||
Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M0 --apcs=interw
|
||||
ork --depend=.\objects\startup_xinc.d -o.\objects\startup_xinc.o -IC:\keil5\ARM
|
||||
\CMSIS\5.9.0\Device\ARM\ARMCM0\Include --predefine="__UVISION_VERSION SETA 538"
|
||||
--predefine="ARMCM0 SETA 1" --list=.\listings\startup_xinc.lst ..\app\Startup\
|
||||
xc60xx\startup_xinc.s
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
STACK 00000000
|
||||
|
||||
Symbol: STACK
|
||||
Definitions
|
||||
At line 10 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
None
|
||||
Comment: STACK unused
|
||||
Stack_Mem 00000000
|
||||
|
||||
Symbol: Stack_Mem
|
||||
Definitions
|
||||
At line 11 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 249 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 251 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
__initial_sp 00001000
|
||||
|
||||
Symbol: __initial_sp
|
||||
Definitions
|
||||
At line 12 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 32 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Comment: __initial_sp used once
|
||||
3 symbols
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
HEAP 00000000
|
||||
|
||||
Symbol: HEAP
|
||||
Definitions
|
||||
At line 16 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
None
|
||||
Comment: HEAP unused
|
||||
Heap_Mem 00000000
|
||||
|
||||
Symbol: Heap_Mem
|
||||
Definitions
|
||||
At line 18 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 248 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 250 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
__heap_base 00000000
|
||||
|
||||
Symbol: __heap_base
|
||||
Definitions
|
||||
At line 17 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
None
|
||||
Comment: __heap_base unused
|
||||
__heap_limit 00000000
|
||||
|
||||
Symbol: __heap_limit
|
||||
Definitions
|
||||
At line 19 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
None
|
||||
Comment: __heap_limit unused
|
||||
4 symbols
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
RESET 00000000
|
||||
|
||||
Symbol: RESET
|
||||
Definitions
|
||||
At line 27 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
None
|
||||
Comment: RESET unused
|
||||
__Vectors 00000000
|
||||
|
||||
Symbol: __Vectors
|
||||
Definitions
|
||||
At line 32 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 28 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 86 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
__Vectors_End 000000C0
|
||||
|
||||
Symbol: __Vectors_End
|
||||
Definitions
|
||||
At line 84 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 29 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 86 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
3 symbols
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
.text 00000000
|
||||
|
||||
Symbol: .text
|
||||
Definitions
|
||||
At line 90 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
None
|
||||
Comment: .text unused
|
||||
AES_Handler 00000032
|
||||
|
||||
Symbol: AES_Handler
|
||||
Definitions
|
||||
At line 228 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 70 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 183 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
AOTIMER0_Handler 00000032
|
||||
|
||||
Symbol: AOTIMER0_Handler
|
||||
Definitions
|
||||
At line 229 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 78 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 195 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
AOTIMER1_Handler 00000032
|
||||
|
||||
Symbol: AOTIMER1_Handler
|
||||
Definitions
|
||||
At line 230 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 79 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 196 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
AUDIO_Handler 00000032
|
||||
|
||||
Symbol: AUDIO_Handler
|
||||
Definitions
|
||||
At line 226 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 72 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 189 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
BLE_Handler 00000032
|
||||
|
||||
Symbol: BLE_Handler
|
||||
Definitions
|
||||
At line 203 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 51 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 164 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
BusFault_Handler 0000002A
|
||||
|
||||
Symbol: BusFault_Handler
|
||||
Definitions
|
||||
At line 144 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 2 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
At line 37 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 145 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
CAN_Handler 00000032
|
||||
|
||||
Symbol: CAN_Handler
|
||||
Definitions
|
||||
At line 233 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 82 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 199 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
CMP_Handler 00000032
|
||||
|
||||
Symbol: CMP_Handler
|
||||
Definitions
|
||||
At line 231 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 80 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 197 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
CPR_Handler 00000032
|
||||
|
||||
Symbol: CPR_Handler
|
||||
Definitions
|
||||
At line 206 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 53 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 166 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
DMA_Handler 00000032
|
||||
|
||||
Symbol: DMA_Handler
|
||||
Definitions
|
||||
At line 205 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 52 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 165 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
DebugMon_Handler 00000030
|
||||
|
||||
Symbol: DebugMon_Handler
|
||||
Definitions
|
||||
At line 158 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 44 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 159 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
Default_Handler 00000032
|
||||
|
||||
Symbol: Default_Handler
|
||||
Definitions
|
||||
At line 163 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
None
|
||||
Comment: Default_Handler unused
|
||||
FMC_Handler 00000032
|
||||
|
||||
Symbol: FMC_Handler
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 3 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
Definitions
|
||||
At line 232 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 81 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 198 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
GADC_Handler 00000032
|
||||
|
||||
Symbol: GADC_Handler
|
||||
Definitions
|
||||
At line 224 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 68 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 181 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
GPIO_Handler 00000032
|
||||
|
||||
Symbol: GPIO_Handler
|
||||
Definitions
|
||||
At line 207 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 54 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 167 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
HardFault_Handler 00000010
|
||||
|
||||
Symbol: HardFault_Handler
|
||||
Definitions
|
||||
At line 122 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 35 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Comment: HardFault_Handler used once
|
||||
I2C_Handler 00000032
|
||||
|
||||
Symbol: I2C_Handler
|
||||
Definitions
|
||||
At line 214 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 61 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 174 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
I2S_Handler 00000032
|
||||
|
||||
Symbol: I2S_Handler
|
||||
Definitions
|
||||
At line 215 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 77 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 194 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
MemManage_Handler 00000028
|
||||
|
||||
Symbol: MemManage_Handler
|
||||
Definitions
|
||||
At line 139 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 36 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 140 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 4 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
NMI_Handler 0000000E
|
||||
|
||||
Symbol: NMI_Handler
|
||||
Definitions
|
||||
At line 115 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 34 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 116 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
PWM_Handler 00000032
|
||||
|
||||
Symbol: PWM_Handler
|
||||
Definitions
|
||||
At line 225 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 69 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 182 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
PendSV_Handler 00000032
|
||||
|
||||
Symbol: PendSV_Handler
|
||||
Definitions
|
||||
At line 201 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 46 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 185 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
RF24G_Handler 00000032
|
||||
|
||||
Symbol: RF24G_Handler
|
||||
Definitions
|
||||
At line 204 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 73 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 190 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
RTC_Handler 00000032
|
||||
|
||||
Symbol: RTC_Handler
|
||||
Definitions
|
||||
At line 208 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 55 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 168 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
Reset_Handler 00000000
|
||||
|
||||
Symbol: Reset_Handler
|
||||
Definitions
|
||||
At line 93 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 33 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 95 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
SPI0_Handler 00000032
|
||||
|
||||
Symbol: SPI0_Handler
|
||||
Definitions
|
||||
At line 219 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 5 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
Uses
|
||||
At line 64 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 177 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
SPI1_Handler 00000032
|
||||
|
||||
Symbol: SPI1_Handler
|
||||
Definitions
|
||||
At line 220 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 65 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 178 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
SPI2_Handler 00000032
|
||||
|
||||
Symbol: SPI2_Handler
|
||||
Definitions
|
||||
At line 221 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 74 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 191 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
SVC_Handler 0000002E
|
||||
|
||||
Symbol: SVC_Handler
|
||||
Definitions
|
||||
At line 153 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 43 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 154 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
SysTick_Handler 00000032
|
||||
|
||||
Symbol: SysTick_Handler
|
||||
Definitions
|
||||
At line 202 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 47 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 186 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
TIMER0_Handler 00000032
|
||||
|
||||
Symbol: TIMER0_Handler
|
||||
Definitions
|
||||
At line 209 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 56 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 169 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
TIMER1_Handler 00000032
|
||||
|
||||
Symbol: TIMER1_Handler
|
||||
Definitions
|
||||
At line 210 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 57 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 170 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
TIMER2_Handler 00000032
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 6 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
|
||||
Symbol: TIMER2_Handler
|
||||
Definitions
|
||||
At line 211 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 58 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 171 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
TIMER3_Handler 00000032
|
||||
|
||||
Symbol: TIMER3_Handler
|
||||
Definitions
|
||||
At line 212 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 59 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 172 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
UART0_Handler 00000032
|
||||
|
||||
Symbol: UART0_Handler
|
||||
Definitions
|
||||
At line 216 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 62 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 175 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
UART1_Handler 00000032
|
||||
|
||||
Symbol: UART1_Handler
|
||||
Definitions
|
||||
At line 217 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 63 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 176 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
UART2_Handler 00000032
|
||||
|
||||
Symbol: UART2_Handler
|
||||
Definitions
|
||||
At line 218 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 76 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 193 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
USB_Handler 00000032
|
||||
|
||||
Symbol: USB_Handler
|
||||
Definitions
|
||||
At line 234 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 71 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 188 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
UsageFault_Handler 0000002C
|
||||
|
||||
Symbol: UsageFault_Handler
|
||||
Definitions
|
||||
At line 149 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 7 Alphabetic symbol ordering
|
||||
Relocatable symbols
|
||||
|
||||
At line 38 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 150 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
WDT_Handler 00000032
|
||||
|
||||
Symbol: WDT_Handler
|
||||
Definitions
|
||||
At line 213 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 60 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 173 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
__user_initial_stackheap 00000034
|
||||
|
||||
Symbol: __user_initial_stackheap
|
||||
Definitions
|
||||
At line 246 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 245 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Comment: __user_initial_stackheap used once
|
||||
hf_used_msp 00000020
|
||||
|
||||
Symbol: hf_used_msp
|
||||
Definitions
|
||||
At line 131 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 127 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Comment: hf_used_msp used once
|
||||
43 symbols
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
||||
Absolute symbols
|
||||
|
||||
Heap_Size 00000000
|
||||
|
||||
Symbol: Heap_Size
|
||||
Definitions
|
||||
At line 14 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 18 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 250 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
Stack_Size 00001000
|
||||
|
||||
Symbol: Stack_Size
|
||||
Definitions
|
||||
At line 8 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 11 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 249 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
__Vectors_Size 000000C0
|
||||
|
||||
Symbol: __Vectors_Size
|
||||
Definitions
|
||||
At line 86 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 30 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Comment: __Vectors_Size used once
|
||||
3 symbols
|
||||
|
||||
|
||||
|
||||
ARM Macro Assembler Page 1 Alphabetic symbol ordering
|
||||
External symbols
|
||||
|
||||
HardFault_Handler_c 00000000
|
||||
|
||||
Symbol: HardFault_Handler_c
|
||||
Definitions
|
||||
At line 123 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 129 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
At line 133 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
|
||||
SystemInit 00000000
|
||||
|
||||
Symbol: SystemInit
|
||||
Definitions
|
||||
At line 97 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 106 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Comment: SystemInit used once
|
||||
__main 00000000
|
||||
|
||||
Symbol: __main
|
||||
Definitions
|
||||
At line 98 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
At line 109 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Comment: __main used once
|
||||
__use_two_region_memory 00000000
|
||||
|
||||
Symbol: __use_two_region_memory
|
||||
Definitions
|
||||
At line 244 in file ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Uses
|
||||
None
|
||||
Comment: __use_two_region_memory unused
|
||||
4 symbols
|
||||
394 symbols in table
|
||||
Binary file not shown.
@@ -0,0 +1,57 @@
|
||||
.\objects\main.o: ..\app\src\main.c
|
||||
.\objects\main.o: ..\app\api\main.h
|
||||
.\objects\main.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||
.\objects\main.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||
.\objects\main.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||
.\objects\main.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||
.\objects\main.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
||||
.\objects\main.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||
.\objects\main.o: ..\app\api\pwm.h
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,51 @@
|
||||
<html>
|
||||
<body>
|
||||
<pre>
|
||||
<h1>礦ision Build Log</h1>
|
||||
<h2>Tool Versions:</h2>
|
||||
IDE-Version: μVision V5.38.0.0
|
||||
Copyright (C) 2022 ARM Ltd and ARM Germany GmbH. All rights reserved.
|
||||
License Information: 11 2, 2, LIC=76F5U-SYBLY-EVY1R-KVDFR-ABNKT-H3E3R
|
||||
|
||||
Tool Versions:
|
||||
Toolchain: MDK-ARM Plus Version: 5.38.0.0
|
||||
Toolchain Path: C:\keil5\ARM\ARMCC\Bin
|
||||
C Compiler: Armcc.exe V5.06 update 7 (build 960)
|
||||
Assembler: Armasm.exe V5.06 update 7 (build 960)
|
||||
Linker/Locator: ArmLink.exe V5.06 update 7 (build 960)
|
||||
Library Manager: ArmAr.exe V5.06 update 7 (build 960)
|
||||
Hex Converter: FromElf.exe V5.06 update 7 (build 960)
|
||||
CPU DLL: SARMCM3.DLL V5.38.0.0
|
||||
Dialog DLL: DARMCM1.DLL V1.19.6.0
|
||||
Target DLL: UL2CM3.DLL V1.164.8.0
|
||||
Dialog DLL: TARMCM1.DLL V1.14.6.0
|
||||
|
||||
<h2>Project:</h2>
|
||||
C:\Users\31158\Desktop\高压双线程序\hpw32e(低压双线测试)\project\example\driver\pwm\mdk\peripheral.uvprojx
|
||||
Project File Date: 01/08/2026
|
||||
|
||||
<h2>Output:</h2>
|
||||
*** Using Compiler 'V5.06 update 7 (build 960)', folder: 'C:\keil5\ARM\ARMCC\Bin'
|
||||
Build target 'pwm_demo'
|
||||
After Build - User command #1: fromelf --bin --output=.\Output\0_ram.bin .\Objects\peripheral.axf
|
||||
After Build - User command #2: .\Output\xip_program.bat
|
||||
C:\Users\31158\Desktop\高压双线程序\hpw32e(低压双线测试)\project\example\driver\pwm\mdk>.\Tools\xinchip_xip_tool.exe .\Output\0_ram.bin .\Output\xip_dual .\Output\periph_Demo_xip_download.bin
|
||||
总有3个命令行参数
|
||||
updata file success !
|
||||
".\Objects\peripheral.axf" - 0 Error(s), 0 Warning(s).
|
||||
|
||||
<h2>Software Packages used:</h2>
|
||||
|
||||
Package Vendor: ARM
|
||||
http://www.keil.com/pack/ARM.CMSIS.5.9.0.pack
|
||||
ARM.CMSIS.5.9.0
|
||||
CMSIS (Common Microcontroller Software Interface Standard)
|
||||
|
||||
<h2>Collection of Component include folders:</h2>
|
||||
C:/keil5/ARM/CMSIS/5.9.0/Device/ARM/ARMCM0/Include
|
||||
|
||||
<h2>Collection of Component Files used:</h2>
|
||||
Build Time Elapsed: 00:00:04
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,23 @@
|
||||
--cpu Cortex-M0
|
||||
".\objects\startup_xinc.o"
|
||||
".\objects\system_xinc.o"
|
||||
".\objects\system_it_xinc.o"
|
||||
".\objects\main.o"
|
||||
".\objects\pwm.o"
|
||||
".\objects\ringbuffer.o"
|
||||
".\objects\xc_drv_aotimer.o"
|
||||
".\objects\xc_drv_clock.o"
|
||||
".\objects\xc_drv_gpio.o"
|
||||
".\objects\xc_drv_i2c.o"
|
||||
".\objects\xc_drv_pwm.o"
|
||||
".\objects\xc_drv_pwr.o"
|
||||
".\objects\xc_drv_sw_i2c.o"
|
||||
".\objects\xc_drv_systick.o"
|
||||
".\objects\xc_drv_timer.o"
|
||||
".\objects\xc_drv_uart.o"
|
||||
".\objects\xc_drv_adc.o"
|
||||
".\objects\xc_drv_fmc_spi.o"
|
||||
--strict --scatter ".\Linker\cpu_xip.scat"
|
||||
--summary_stderr --info summarysizes --map --load_addr_map_info --xref --callgraph --symbols
|
||||
--info sizes --info totals --info unused --info veneers
|
||||
--list ".\Listings\peripheral.map" -o .\Objects\peripheral.axf
|
||||
@@ -0,0 +1,861 @@
|
||||
Dependencies for Project 'peripheral', Target 'pwm_demo': (DO NOT MODIFY !)
|
||||
CompilerVersion: 5060960::V5.06 update 7 (build 960)::.\ARMCC
|
||||
F (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h)(0x66DC0E18)()
|
||||
F (..\app\Startup\xc60xx\startup_xinc.s)(0x66DC0DF4)(--cpu Cortex-M0 --li -g --apcs=interwork
|
||||
|
||||
-IC:\keil5\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include
|
||||
|
||||
--pd "__UVISION_VERSION SETA 538" --pd "ARMCM0 SETA 1"
|
||||
|
||||
--list .\listings\startup_xinc.lst --xref -o .\objects\startup_xinc.o --depend .\objects\startup_xinc.d)
|
||||
F (..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\system_xinc.c)(0x66DC0E18)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\app\Startup\xc60xx -I ..\app\api -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register --gnu --diag_suppress=66
|
||||
|
||||
-IC:\keil5\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include
|
||||
|
||||
-D__UVISION_VERSION="538" -DARMCM0 -DXC60XX -DDEBUG_ENABLE -DUSE_XIP="1" -DDMAC_NVIC_ENABLE="0"
|
||||
|
||||
-o .\objects\system_xinc.o --omf_browse .\objects\system_xinc.crf --depend .\objects\system_xinc.d)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdio.h)(0x68A53541)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h)(0x66DC1740)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h)(0x685E529E)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdint.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdbool.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\string.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h)(0x685D0D46)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h)(0x66DC11A6)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h)(0x687718FA)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h)(0x68661DBA)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdlib.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h)(0x66EBDF16)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h)(0x66DE9B14)
|
||||
F (..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\system_it_xinc.c)(0x66DC0E18)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\app\Startup\xc60xx -I ..\app\api -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register --gnu --diag_suppress=66
|
||||
|
||||
-IC:\keil5\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include
|
||||
|
||||
-D__UVISION_VERSION="538" -DARMCM0 -DXC60XX -DDEBUG_ENABLE -DUSE_XIP="1" -DDMAC_NVIC_ENABLE="0"
|
||||
|
||||
-o .\objects\system_it_xinc.o --omf_browse .\objects\system_it_xinc.crf --depend .\objects\system_it_xinc.d)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\system_it_xinc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h)(0x66DC1740)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h)(0x685E529E)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdio.h)(0x68A53541)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdint.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdbool.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\string.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h)(0x685D0D46)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h)(0x66DC11A6)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h)(0x687718FA)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h)(0x68661DBA)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdlib.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h)(0x66EBDF16)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h)(0x66DE9B14)
|
||||
F (..\app\src\main.c)(0x69BE335F)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\app\Startup\xc60xx -I ..\app\api -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register --gnu --diag_suppress=66
|
||||
|
||||
-IC:\keil5\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include
|
||||
|
||||
-D__UVISION_VERSION="538" -DARMCM0 -DXC60XX -DDEBUG_ENABLE -DUSE_XIP="1" -DDMAC_NVIC_ENABLE="0"
|
||||
|
||||
-o .\objects\main.o --omf_browse .\objects\main.crf --depend .\objects\main.d)
|
||||
I (..\app\api\main.h)(0x66DC0DF4)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdio.h)(0x68A53541)
|
||||
I (C:\keil5\ARM\ARMCC\include\string.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h)(0x66DC1740)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h)(0x685E529E)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdint.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdbool.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h)(0x685D0D46)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h)(0x66DC11A6)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h)(0x687718FA)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h)(0x68661DBA)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdlib.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h)(0x66EBDF16)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h)(0x66DE9B14)
|
||||
I (..\app\api\pwm.h)(0x66DC0DF4)
|
||||
F (..\app\src\pwm.c)(0x69CB64D5)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\app\Startup\xc60xx -I ..\app\api -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register --gnu --diag_suppress=66
|
||||
|
||||
-IC:\keil5\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include
|
||||
|
||||
-D__UVISION_VERSION="538" -DARMCM0 -DXC60XX -DDEBUG_ENABLE -DUSE_XIP="1" -DDMAC_NVIC_ENABLE="0"
|
||||
|
||||
-o .\objects\pwm.o --omf_browse .\objects\pwm.crf --depend .\objects\pwm.d)
|
||||
I (..\app\api\pwm.h)(0x66DC0DF4)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdio.h)(0x68A53541)
|
||||
I (C:\keil5\ARM\ARMCC\include\string.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdint.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h)(0x66DE9B14)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdbool.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h)(0x66DC1740)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h)(0x685E529E)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h)(0x685D0D46)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h)(0x66DC11A6)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h)(0x687718FA)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h)(0x68661DBA)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdlib.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h)(0x66EBDF16)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h)(0x66DC0E18)
|
||||
F (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.c)(0x66DC0E18)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\app\Startup\xc60xx -I ..\app\api -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register --gnu --diag_suppress=66
|
||||
|
||||
-IC:\keil5\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include
|
||||
|
||||
-D__UVISION_VERSION="538" -DARMCM0 -DXC60XX -DDEBUG_ENABLE -DUSE_XIP="1" -DDMAC_NVIC_ENABLE="0"
|
||||
|
||||
-o .\objects\ringbuffer.o --omf_browse .\objects\ringbuffer.crf --depend .\objects\ringbuffer.d)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h)(0x66DC0E18)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdbool.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdint.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdio.h)(0x68A53541)
|
||||
F (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.c)(0x66DC0E18)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\app\Startup\xc60xx -I ..\app\api -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register --gnu --diag_suppress=66
|
||||
|
||||
-IC:\keil5\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include
|
||||
|
||||
-D__UVISION_VERSION="538" -DARMCM0 -DXC60XX -DDEBUG_ENABLE -DUSE_XIP="1" -DDMAC_NVIC_ENABLE="0"
|
||||
|
||||
-o .\objects\xc_drv_aotimer.o --omf_browse .\objects\xc_drv_aotimer.crf --depend .\objects\xc_drv_aotimer.d)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h)(0x66DC1740)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h)(0x685E529E)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdio.h)(0x68A53541)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdint.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdbool.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\string.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h)(0x685D0D46)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h)(0x66DC11A6)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h)(0x687718FA)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h)(0x68661DBA)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdlib.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h)(0x66EBDF16)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h)(0x66DE9B14)
|
||||
F (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.c)(0x66DC0E18)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\app\Startup\xc60xx -I ..\app\api -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register --gnu --diag_suppress=66
|
||||
|
||||
-IC:\keil5\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include
|
||||
|
||||
-D__UVISION_VERSION="538" -DARMCM0 -DXC60XX -DDEBUG_ENABLE -DUSE_XIP="1" -DDMAC_NVIC_ENABLE="0"
|
||||
|
||||
-o .\objects\xc_drv_clock.o --omf_browse .\objects\xc_drv_clock.crf --depend .\objects\xc_drv_clock.d)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h)(0x66DC0E18)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdbool.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdio.h)(0x68A53541)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h)(0x66DC1740)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h)(0x685E529E)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdint.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\string.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h)(0x685D0D46)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h)(0x66DC11A6)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h)(0x687718FA)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h)(0x68661DBA)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdlib.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h)(0x66EBDF16)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h)(0x66DE9B14)
|
||||
F (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.c)(0x66DC0E18)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\app\Startup\xc60xx -I ..\app\api -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register --gnu --diag_suppress=66
|
||||
|
||||
-IC:\keil5\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include
|
||||
|
||||
-D__UVISION_VERSION="538" -DARMCM0 -DXC60XX -DDEBUG_ENABLE -DUSE_XIP="1" -DDMAC_NVIC_ENABLE="0"
|
||||
|
||||
-o .\objects\xc_drv_gpio.o --omf_browse .\objects\xc_drv_gpio.crf --depend .\objects\xc_drv_gpio.d)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h)(0x66DC11A6)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdbool.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdio.h)(0x68A53541)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h)(0x66DC1740)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h)(0x685E529E)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdint.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\string.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h)(0x685D0D46)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h)(0x687718FA)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h)(0x68661DBA)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdlib.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h)(0x66EBDF16)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h)(0x66DE9B14)
|
||||
F (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.c)(0x66DC0E18)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\app\Startup\xc60xx -I ..\app\api -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register --gnu --diag_suppress=66
|
||||
|
||||
-IC:\keil5\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include
|
||||
|
||||
-D__UVISION_VERSION="538" -DARMCM0 -DXC60XX -DDEBUG_ENABLE -DUSE_XIP="1" -DDMAC_NVIC_ENABLE="0"
|
||||
|
||||
-o .\objects\xc_drv_i2c.o --omf_browse .\objects\xc_drv_i2c.crf --depend .\objects\xc_drv_i2c.d)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h)(0x66DC0E18)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdbool.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdio.h)(0x68A53541)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h)(0x66DC1740)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h)(0x685E529E)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdint.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\string.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h)(0x685D0D46)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h)(0x66DC11A6)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h)(0x687718FA)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h)(0x68661DBA)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdlib.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h)(0x66EBDF16)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h)(0x66DE9B14)
|
||||
F (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.c)(0x66DE9B00)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\app\Startup\xc60xx -I ..\app\api -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register --gnu --diag_suppress=66
|
||||
|
||||
-IC:\keil5\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include
|
||||
|
||||
-D__UVISION_VERSION="538" -DARMCM0 -DXC60XX -DDEBUG_ENABLE -DUSE_XIP="1" -DDMAC_NVIC_ENABLE="0"
|
||||
|
||||
-o .\objects\xc_drv_pwm.o --omf_browse .\objects\xc_drv_pwm.crf --depend .\objects\xc_drv_pwm.d)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h)(0x66DE9B14)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdbool.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdio.h)(0x68A53541)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h)(0x66DC1740)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h)(0x685E529E)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdint.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\string.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h)(0x685D0D46)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h)(0x66DC11A6)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h)(0x687718FA)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h)(0x68661DBA)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdlib.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h)(0x66EBDF16)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h)(0x66DC0E18)
|
||||
F (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.c)(0x66DC0FD8)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\app\Startup\xc60xx -I ..\app\api -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register --gnu --diag_suppress=66
|
||||
|
||||
-IC:\keil5\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include
|
||||
|
||||
-D__UVISION_VERSION="538" -DARMCM0 -DXC60XX -DDEBUG_ENABLE -DUSE_XIP="1" -DDMAC_NVIC_ENABLE="0"
|
||||
|
||||
-o .\objects\xc_drv_pwr.o --omf_browse .\objects\xc_drv_pwr.crf --depend .\objects\xc_drv_pwr.d)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h)(0x66DC1740)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h)(0x685E529E)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdio.h)(0x68A53541)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdint.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdbool.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\string.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h)(0x685D0D46)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h)(0x66DC11A6)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h)(0x687718FA)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h)(0x68661DBA)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdlib.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h)(0x66EBDF16)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h)(0x66DE9B14)
|
||||
F (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.c)(0x66DC0E18)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\app\Startup\xc60xx -I ..\app\api -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register --gnu --diag_suppress=66
|
||||
|
||||
-IC:\keil5\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include
|
||||
|
||||
-D__UVISION_VERSION="538" -DARMCM0 -DXC60XX -DDEBUG_ENABLE -DUSE_XIP="1" -DDMAC_NVIC_ENABLE="0"
|
||||
|
||||
-o .\objects\xc_drv_sw_i2c.o --omf_browse .\objects\xc_drv_sw_i2c.crf --depend .\objects\xc_drv_sw_i2c.d)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h)(0x66DC1740)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h)(0x685E529E)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdio.h)(0x68A53541)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdint.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdbool.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\string.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h)(0x685D0D46)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h)(0x66DC11A6)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h)(0x687718FA)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h)(0x68661DBA)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdlib.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h)(0x66EBDF16)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h)(0x66DE9B14)
|
||||
F (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.c)(0x66DC0E18)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\app\Startup\xc60xx -I ..\app\api -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register --gnu --diag_suppress=66
|
||||
|
||||
-IC:\keil5\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include
|
||||
|
||||
-D__UVISION_VERSION="538" -DARMCM0 -DXC60XX -DDEBUG_ENABLE -DUSE_XIP="1" -DDMAC_NVIC_ENABLE="0"
|
||||
|
||||
-o .\objects\xc_drv_systick.o --omf_browse .\objects\xc_drv_systick.crf --depend .\objects\xc_drv_systick.d)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h)(0x66DC1740)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h)(0x685E529E)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdio.h)(0x68A53541)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdint.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdbool.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\string.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h)(0x685D0D46)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h)(0x66DC11A6)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h)(0x687718FA)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h)(0x68661DBA)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdlib.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h)(0x66EBDF16)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h)(0x66DE9B14)
|
||||
F (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.c)(0x685D0E2A)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\app\Startup\xc60xx -I ..\app\api -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register --gnu --diag_suppress=66
|
||||
|
||||
-IC:\keil5\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include
|
||||
|
||||
-D__UVISION_VERSION="538" -DARMCM0 -DXC60XX -DDEBUG_ENABLE -DUSE_XIP="1" -DDMAC_NVIC_ENABLE="0"
|
||||
|
||||
-o .\objects\xc_drv_timer.o --omf_browse .\objects\xc_drv_timer.crf --depend .\objects\xc_drv_timer.d)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h)(0x66DC0E18)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdbool.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdio.h)(0x68A53541)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h)(0x66DC1740)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h)(0x685E529E)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdint.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\string.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h)(0x685D0D46)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h)(0x66DC11A6)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h)(0x687718FA)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h)(0x68661DBA)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdlib.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h)(0x66EBDF16)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h)(0x66DE9B14)
|
||||
F (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.c)(0x6901D15C)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\app\Startup\xc60xx -I ..\app\api -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register --gnu --diag_suppress=66
|
||||
|
||||
-IC:\keil5\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include
|
||||
|
||||
-D__UVISION_VERSION="538" -DARMCM0 -DXC60XX -DDEBUG_ENABLE -DUSE_XIP="1" -DDMAC_NVIC_ENABLE="0"
|
||||
|
||||
-o .\objects\xc_drv_uart.o --omf_browse .\objects\xc_drv_uart.crf --depend .\objects\xc_drv_uart.d)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h)(0x66DC0E18)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdbool.h)(0x5E8E3CC2)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdio.h)(0x68A53541)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h)(0x66DC0E18)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdint.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h)(0x66DC1740)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h)(0x685E529E)
|
||||
I (C:\keil5\ARM\ARMCC\include\string.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h)(0x685D0D46)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h)(0x66DC11A6)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h)(0x687718FA)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h)(0x68661DBA)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdlib.h)(0x5E8E3CC2)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h)(0x66EBDF16)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h)(0x66DC0E18)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h)(0x66DE9B14)
|
||||
F (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.c)(0x66DC119E)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\app\Startup\xc60xx -I ..\app\api -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register --gnu --diag_suppress=66
|
||||
|
||||
-IC:\keil5\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include
|
||||
|
||||
-D__UVISION_VERSION="538" -DARMCM0 -DXC60XX -DDEBUG_ENABLE -DUSE_XIP="1" -DDMAC_NVIC_ENABLE="0"
|
||||
|
||||
-o .\objects\xc_drv_adc.o --omf_browse .\objects\xc_drv_adc.crf --depend .\objects\xc_drv_adc.d)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h)(0x66DC1740)
|
||||
I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h)(0x685E529E)
|
||||
I (C:\keil5\ARM\ARMCC\include\stdio.h)(0x68A53541)
|
||||
Binary file not shown.
@@ -0,0 +1,57 @@
|
||||
.\objects\pwm.o: ..\app\src\pwm.c
|
||||
.\objects\pwm.o: ..\app\api\pwm.h
|
||||
.\objects\pwm.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||
.\objects\pwm.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
||||
.\objects\pwm.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||
.\objects\pwm.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||
.\objects\pwm.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
||||
.\objects\pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,5 @@
|
||||
.\objects\ringbuffer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.c
|
||||
.\objects\ringbuffer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h
|
||||
.\objects\ringbuffer.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||
.\objects\ringbuffer.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||
.\objects\ringbuffer.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
.\objects\startup_xinc.o: ..\app\Startup\xc60xx\startup_xinc.s
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,56 @@
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\system_it_xinc.c
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\system_it_xinc.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||
.\objects\system_it_xinc.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||
.\objects\system_it_xinc.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||
.\objects\system_it_xinc.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||
.\objects\system_it_xinc.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||
.\objects\system_it_xinc.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
||||
.\objects\system_it_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,55 @@
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\system_xinc.c
|
||||
.\objects\system_xinc.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||
.\objects\system_xinc.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||
.\objects\system_xinc.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||
.\objects\system_xinc.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||
.\objects\system_xinc.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
||||
.\objects\system_xinc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,55 @@
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.c
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||
.\objects\xc_drv_adc.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||
.\objects\xc_drv_adc.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||
.\objects\xc_drv_adc.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||
.\objects\xc_drv_adc.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||
.\objects\xc_drv_adc.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
||||
.\objects\xc_drv_adc.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,56 @@
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.c
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||
.\objects\xc_drv_aotimer.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||
.\objects\xc_drv_aotimer.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||
.\objects\xc_drv_aotimer.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||
.\objects\xc_drv_aotimer.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||
.\objects\xc_drv_aotimer.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
||||
.\objects\xc_drv_aotimer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,56 @@
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.c
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h
|
||||
.\objects\xc_drv_clock.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||
.\objects\xc_drv_clock.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||
.\objects\xc_drv_clock.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||
.\objects\xc_drv_clock.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||
.\objects\xc_drv_clock.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
||||
.\objects\xc_drv_clock.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,56 @@
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.c
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||
.\objects\xc_drv_fmc_spi.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||
.\objects\xc_drv_fmc_spi.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||
.\objects\xc_drv_fmc_spi.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||
.\objects\xc_drv_fmc_spi.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||
.\objects\xc_drv_fmc_spi.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
||||
.\objects\xc_drv_fmc_spi.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,56 @@
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.c
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h
|
||||
.\objects\xc_drv_gpio.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||
.\objects\xc_drv_gpio.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||
.\objects\xc_drv_gpio.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||
.\objects\xc_drv_gpio.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||
.\objects\xc_drv_gpio.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
||||
.\objects\xc_drv_gpio.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,56 @@
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.c
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
||||
.\objects\xc_drv_i2c.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||
.\objects\xc_drv_i2c.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||
.\objects\xc_drv_i2c.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||
.\objects\xc_drv_i2c.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||
.\objects\xc_drv_i2c.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
||||
.\objects\xc_drv_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,56 @@
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.c
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||
.\objects\xc_drv_pwm.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||
.\objects\xc_drv_pwm.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||
.\objects\xc_drv_pwm.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||
.\objects\xc_drv_pwm.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||
.\objects\xc_drv_pwm.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
||||
.\objects\xc_drv_pwm.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,56 @@
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.c
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||
.\objects\xc_drv_pwr.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||
.\objects\xc_drv_pwr.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||
.\objects\xc_drv_pwr.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||
.\objects\xc_drv_pwr.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||
.\objects\xc_drv_pwr.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
||||
.\objects\xc_drv_pwr.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,56 @@
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.c
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||
.\objects\xc_drv_sw_i2c.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||
.\objects\xc_drv_sw_i2c.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||
.\objects\xc_drv_sw_i2c.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||
.\objects\xc_drv_sw_i2c.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||
.\objects\xc_drv_sw_i2c.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
||||
.\objects\xc_drv_sw_i2c.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,56 @@
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.c
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||
.\objects\xc_drv_systick.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||
.\objects\xc_drv_systick.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||
.\objects\xc_drv_systick.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||
.\objects\xc_drv_systick.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||
.\objects\xc_drv_systick.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
||||
.\objects\xc_drv_systick.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,56 @@
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.c
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h
|
||||
.\objects\xc_drv_timer.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||
.\objects\xc_drv_timer.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||
.\objects\xc_drv_timer.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||
.\objects\xc_drv_timer.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||
.\objects\xc_drv_timer.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
||||
.\objects\xc_drv_timer.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,56 @@
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.c
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
||||
.\objects\xc_drv_uart.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdbool.h
|
||||
.\objects\xc_drv_uart.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdio.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h
|
||||
.\objects\xc_drv_uart.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc60xx.h
|
||||
.\objects\xc_drv_uart.o: C:\keil5\ARM\ARMCC\Bin\..\include\string.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h
|
||||
.\objects\xc_drv_uart.o: C:\keil5\ARM\ARMCC\Bin\..\include\stdlib.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h
|
||||
.\objects\xc_drv_uart.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
Xincboot_tool.exe 0_ram.bin 1_ram_download.bin 0 0 0 0 1
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
.\Tools\xinchip_xip_tool.exe .\Output\0_ram.bin .\Output\xip_dual .\Output\periph_Demo_xip_download.bin
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,59 @@
|
||||
#!/usr/bin/env python
|
||||
#-*- coding:UTF-8 -*-
|
||||
import socket
|
||||
from select import select
|
||||
import time
|
||||
import os
|
||||
import sys
|
||||
import threading
|
||||
import json
|
||||
import struct
|
||||
import binascii
|
||||
import time
|
||||
import re
|
||||
import fileinput
|
||||
|
||||
|
||||
|
||||
def dump_addr(addr):
|
||||
file_asm = "./Xinc_ble_sdk_asm"
|
||||
cur_func = ""
|
||||
with open(file_asm, 'r') as fd:
|
||||
for line in fd:
|
||||
if re.match(r" \w+", line) != None:
|
||||
cur_func = line.strip()
|
||||
#
|
||||
if re.search("^ 0x", line) != None and re.search(addr, line) != None:
|
||||
print(addr, cur_func)
|
||||
break
|
||||
fd.close()
|
||||
|
||||
if __name__ == "__main__":
|
||||
file_in = "./dump.txt"
|
||||
|
||||
for line in fileinput.input(file_in):
|
||||
# 处理 PC 指针信息
|
||||
if re.search("PC = ", line) != None:
|
||||
pc_addr = line.split("PC = ")[1].split(",")[0]
|
||||
#print(hex(int(pc_addr, 16)))
|
||||
dump_addr(hex(int(pc_addr, 16)))
|
||||
|
||||
# 处理 栈信息
|
||||
if re.search("^[0-9]",line) != None:
|
||||
#print(line)
|
||||
stack = line.split('=')[1].replace('\n', '').split(' ')
|
||||
for addr in stack:
|
||||
if addr == ' ' or re.search("^1", addr) == None:
|
||||
continue
|
||||
#print(addr, hex(int(addr,16)-1))
|
||||
dump_addr(hex(int(addr,16)-1))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Binary file not shown.
File diff suppressed because one or more lines are too long
@@ -0,0 +1,432 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<ProjectOpt xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="project_optx.xsd">
|
||||
|
||||
<SchemaVersion>1.0</SchemaVersion>
|
||||
|
||||
<Header>### uVision Project, (C) Keil Software</Header>
|
||||
|
||||
<Extensions>
|
||||
<cExt>*.c</cExt>
|
||||
<aExt>*.s*; *.src; *.a*</aExt>
|
||||
<oExt>*.obj; *.o</oExt>
|
||||
<lExt>*.lib</lExt>
|
||||
<tExt>*.txt; *.h; *.inc; *.md</tExt>
|
||||
<pExt>*.plm</pExt>
|
||||
<CppX>*.cpp</CppX>
|
||||
<nMigrate>0</nMigrate>
|
||||
</Extensions>
|
||||
|
||||
<DaveTm>
|
||||
<dwLowDateTime>0</dwLowDateTime>
|
||||
<dwHighDateTime>0</dwHighDateTime>
|
||||
</DaveTm>
|
||||
|
||||
<Target>
|
||||
<TargetName>pwm_demo</TargetName>
|
||||
<ToolsetNumber>0x4</ToolsetNumber>
|
||||
<ToolsetName>ARM-ADS</ToolsetName>
|
||||
<TargetOption>
|
||||
<CLKADS>12000000</CLKADS>
|
||||
<OPTTT>
|
||||
<gFlags>0</gFlags>
|
||||
<BeepAtEnd>1</BeepAtEnd>
|
||||
<RunSim>0</RunSim>
|
||||
<RunTarget>1</RunTarget>
|
||||
<RunAbUc>0</RunAbUc>
|
||||
</OPTTT>
|
||||
<OPTHX>
|
||||
<HexSelection>1</HexSelection>
|
||||
<FlashByte>65535</FlashByte>
|
||||
<HexRangeLowAddress>0</HexRangeLowAddress>
|
||||
<HexRangeHighAddress>0</HexRangeHighAddress>
|
||||
<HexOffset>0</HexOffset>
|
||||
</OPTHX>
|
||||
<OPTLEX>
|
||||
<PageWidth>79</PageWidth>
|
||||
<PageLength>66</PageLength>
|
||||
<TabStop>8</TabStop>
|
||||
<ListingPath>.\Listings\</ListingPath>
|
||||
</OPTLEX>
|
||||
<ListingPage>
|
||||
<CreateCListing>1</CreateCListing>
|
||||
<CreateAListing>1</CreateAListing>
|
||||
<CreateLListing>1</CreateLListing>
|
||||
<CreateIListing>0</CreateIListing>
|
||||
<AsmCond>1</AsmCond>
|
||||
<AsmSymb>1</AsmSymb>
|
||||
<AsmXref>0</AsmXref>
|
||||
<CCond>1</CCond>
|
||||
<CCode>0</CCode>
|
||||
<CListInc>0</CListInc>
|
||||
<CSymb>0</CSymb>
|
||||
<LinkerCodeListing>0</LinkerCodeListing>
|
||||
</ListingPage>
|
||||
<OPTXL>
|
||||
<LMap>1</LMap>
|
||||
<LComments>1</LComments>
|
||||
<LGenerateSymbols>1</LGenerateSymbols>
|
||||
<LLibSym>1</LLibSym>
|
||||
<LLines>1</LLines>
|
||||
<LLocSym>1</LLocSym>
|
||||
<LPubSym>1</LPubSym>
|
||||
<LXref>0</LXref>
|
||||
<LExpSel>0</LExpSel>
|
||||
</OPTXL>
|
||||
<OPTFL>
|
||||
<tvExp>1</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<IsCurrentTarget>1</IsCurrentTarget>
|
||||
</OPTFL>
|
||||
<CpuCode>7</CpuCode>
|
||||
<DebugOpt>
|
||||
<uSim>0</uSim>
|
||||
<uTrg>1</uTrg>
|
||||
<sLdApp>1</sLdApp>
|
||||
<sGomain>1</sGomain>
|
||||
<sRbreak>1</sRbreak>
|
||||
<sRwatch>1</sRwatch>
|
||||
<sRmem>1</sRmem>
|
||||
<sRfunc>1</sRfunc>
|
||||
<sRbox>1</sRbox>
|
||||
<tLdApp>1</tLdApp>
|
||||
<tGomain>1</tGomain>
|
||||
<tRbreak>1</tRbreak>
|
||||
<tRwatch>1</tRwatch>
|
||||
<tRmem>1</tRmem>
|
||||
<tRfunc>0</tRfunc>
|
||||
<tRbox>1</tRbox>
|
||||
<tRtrace>1</tRtrace>
|
||||
<sRSysVw>1</sRSysVw>
|
||||
<tRSysVw>1</tRSysVw>
|
||||
<sRunDeb>0</sRunDeb>
|
||||
<sLrtime>0</sLrtime>
|
||||
<bEvRecOn>1</bEvRecOn>
|
||||
<bSchkAxf>0</bSchkAxf>
|
||||
<bTchkAxf>0</bTchkAxf>
|
||||
<nTsel>0</nTsel>
|
||||
<sDll></sDll>
|
||||
<sDllPa></sDllPa>
|
||||
<sDlgDll></sDlgDll>
|
||||
<sDlgPa></sDlgPa>
|
||||
<sIfile></sIfile>
|
||||
<tDll></tDll>
|
||||
<tDllPa></tDllPa>
|
||||
<tDlgDll></tDlgDll>
|
||||
<tDlgPa></tDlgPa>
|
||||
<tIfile></tIfile>
|
||||
<pMon>BIN\UL2CM3.DLL</pMon>
|
||||
</DebugOpt>
|
||||
<TargetDriverDllRegistry>
|
||||
<SetRegEntry>
|
||||
<Number>0</Number>
|
||||
<Key>UL2CM3</Key>
|
||||
<Name>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000)</Name>
|
||||
</SetRegEntry>
|
||||
</TargetDriverDllRegistry>
|
||||
<Breakpoint/>
|
||||
<Tracepoint>
|
||||
<THDelay>0</THDelay>
|
||||
</Tracepoint>
|
||||
<DebugFlag>
|
||||
<trace>0</trace>
|
||||
<periodic>0</periodic>
|
||||
<aLwin>0</aLwin>
|
||||
<aCover>0</aCover>
|
||||
<aSer1>0</aSer1>
|
||||
<aSer2>0</aSer2>
|
||||
<aPa>0</aPa>
|
||||
<viewmode>0</viewmode>
|
||||
<vrSel>0</vrSel>
|
||||
<aSym>0</aSym>
|
||||
<aTbox>0</aTbox>
|
||||
<AscS1>0</AscS1>
|
||||
<AscS2>0</AscS2>
|
||||
<AscS3>0</AscS3>
|
||||
<aSer3>0</aSer3>
|
||||
<eProf>0</eProf>
|
||||
<aLa>0</aLa>
|
||||
<aPa1>0</aPa1>
|
||||
<AscS4>0</AscS4>
|
||||
<aSer4>0</aSer4>
|
||||
<StkLoc>0</StkLoc>
|
||||
<TrcWin>0</TrcWin>
|
||||
<newCpu>0</newCpu>
|
||||
<uProt>0</uProt>
|
||||
</DebugFlag>
|
||||
<LintExecutable></LintExecutable>
|
||||
<LintConfigFile></LintConfigFile>
|
||||
<bLintAuto>0</bLintAuto>
|
||||
<bAutoGenD>0</bAutoGenD>
|
||||
<LntExFlags>0</LntExFlags>
|
||||
<pMisraName></pMisraName>
|
||||
<pszMrule></pszMrule>
|
||||
<pSingCmds></pSingCmds>
|
||||
<pMultCmds></pMultCmds>
|
||||
<pMisraNamep></pMisraNamep>
|
||||
<pszMrulep></pszMrulep>
|
||||
<pSingCmdsp></pSingCmdsp>
|
||||
<pMultCmdsp></pMultCmdsp>
|
||||
</TargetOption>
|
||||
</Target>
|
||||
|
||||
<Group>
|
||||
<GroupName>Startup</GroupName>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<cbSel>0</cbSel>
|
||||
<RteFlg>0</RteFlg>
|
||||
<File>
|
||||
<GroupNumber>1</GroupNumber>
|
||||
<FileNumber>1</FileNumber>
|
||||
<FileType>5</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h</PathWithFileName>
|
||||
<FilenameWithoutPath>core_cm0.h</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>1</GroupNumber>
|
||||
<FileNumber>2</FileNumber>
|
||||
<FileType>2</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>..\app\Startup\xc60xx\startup_xinc.s</PathWithFileName>
|
||||
<FilenameWithoutPath>startup_xinc.s</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>1</GroupNumber>
|
||||
<FileNumber>3</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\system_xinc.c</PathWithFileName>
|
||||
<FilenameWithoutPath>system_xinc.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>1</GroupNumber>
|
||||
<FileNumber>4</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\system_it_xinc.c</PathWithFileName>
|
||||
<FilenameWithoutPath>system_it_xinc.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
</Group>
|
||||
|
||||
<Group>
|
||||
<GroupName>Application</GroupName>
|
||||
<tvExp>1</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<cbSel>0</cbSel>
|
||||
<RteFlg>0</RteFlg>
|
||||
<File>
|
||||
<GroupNumber>2</GroupNumber>
|
||||
<FileNumber>5</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>..\app\src\main.c</PathWithFileName>
|
||||
<FilenameWithoutPath>main.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
</Group>
|
||||
|
||||
<Group>
|
||||
<GroupName>bsp</GroupName>
|
||||
<tvExp>1</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<cbSel>0</cbSel>
|
||||
<RteFlg>0</RteFlg>
|
||||
<File>
|
||||
<GroupNumber>3</GroupNumber>
|
||||
<FileNumber>6</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>..\app\src\pwm.c</PathWithFileName>
|
||||
<FilenameWithoutPath>pwm.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
</Group>
|
||||
|
||||
<Group>
|
||||
<GroupName>Drivers</GroupName>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<cbSel>0</cbSel>
|
||||
<RteFlg>0</RteFlg>
|
||||
<File>
|
||||
<GroupNumber>4</GroupNumber>
|
||||
<FileNumber>7</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.c</PathWithFileName>
|
||||
<FilenameWithoutPath>ringbuffer.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>4</GroupNumber>
|
||||
<FileNumber>8</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.c</PathWithFileName>
|
||||
<FilenameWithoutPath>xc_drv_aotimer.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>4</GroupNumber>
|
||||
<FileNumber>9</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.c</PathWithFileName>
|
||||
<FilenameWithoutPath>xc_drv_clock.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>4</GroupNumber>
|
||||
<FileNumber>10</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.c</PathWithFileName>
|
||||
<FilenameWithoutPath>xc_drv_gpio.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>4</GroupNumber>
|
||||
<FileNumber>11</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.c</PathWithFileName>
|
||||
<FilenameWithoutPath>xc_drv_i2c.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>4</GroupNumber>
|
||||
<FileNumber>12</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.c</PathWithFileName>
|
||||
<FilenameWithoutPath>xc_drv_pwm.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>4</GroupNumber>
|
||||
<FileNumber>13</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.c</PathWithFileName>
|
||||
<FilenameWithoutPath>xc_drv_pwr.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>4</GroupNumber>
|
||||
<FileNumber>14</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.c</PathWithFileName>
|
||||
<FilenameWithoutPath>xc_drv_sw_i2c.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>4</GroupNumber>
|
||||
<FileNumber>15</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.c</PathWithFileName>
|
||||
<FilenameWithoutPath>xc_drv_systick.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>4</GroupNumber>
|
||||
<FileNumber>16</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.c</PathWithFileName>
|
||||
<FilenameWithoutPath>xc_drv_timer.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>4</GroupNumber>
|
||||
<FileNumber>17</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.c</PathWithFileName>
|
||||
<FilenameWithoutPath>xc_drv_uart.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>4</GroupNumber>
|
||||
<FileNumber>18</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.c</PathWithFileName>
|
||||
<FilenameWithoutPath>xc_drv_adc.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>4</GroupNumber>
|
||||
<FileNumber>19</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.c</PathWithFileName>
|
||||
<FilenameWithoutPath>xc_drv_fmc_spi.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
</Group>
|
||||
|
||||
</ProjectOpt>
|
||||
@@ -0,0 +1,538 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||
<Project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="project_projx.xsd">
|
||||
|
||||
<SchemaVersion>2.1</SchemaVersion>
|
||||
|
||||
<Header>### uVision Project, (C) Keil Software</Header>
|
||||
|
||||
<Targets>
|
||||
<Target>
|
||||
<TargetName>pwm_demo</TargetName>
|
||||
<ToolsetNumber>0x4</ToolsetNumber>
|
||||
<ToolsetName>ARM-ADS</ToolsetName>
|
||||
<pCCUsed>5060960::V5.06 update 7 (build 960)::.\ARMCC</pCCUsed>
|
||||
<uAC6>0</uAC6>
|
||||
<TargetOption>
|
||||
<TargetCommonOption>
|
||||
<Device>ARMCM0</Device>
|
||||
<Vendor>ARM</Vendor>
|
||||
<PackID>ARM.CMSIS.5.9.0</PackID>
|
||||
<PackURL>http://www.keil.com/pack/</PackURL>
|
||||
<Cpu>IRAM(0x20000000,0x00020000) IROM(0x00000000,0x00040000) CPUTYPE("Cortex-M0") CLOCK(12000000) ESEL ELITTLE</Cpu>
|
||||
<FlashUtilSpec></FlashUtilSpec>
|
||||
<StartupFile></StartupFile>
|
||||
<FlashDriverDll>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000)</FlashDriverDll>
|
||||
<DeviceId>0</DeviceId>
|
||||
<RegisterFile>$$Device:ARMCM0$Device\ARM\ARMCM0\Include\ARMCM0.h</RegisterFile>
|
||||
<MemoryEnv></MemoryEnv>
|
||||
<Cmp></Cmp>
|
||||
<Asm></Asm>
|
||||
<Linker></Linker>
|
||||
<OHString></OHString>
|
||||
<InfinionOptionDll></InfinionOptionDll>
|
||||
<SLE66CMisc></SLE66CMisc>
|
||||
<SLE66AMisc></SLE66AMisc>
|
||||
<SLE66LinkerMisc></SLE66LinkerMisc>
|
||||
<SFDFile>$$Device:ARMCM0$Device\ARM\SVD\ARMCM0.svd</SFDFile>
|
||||
<bCustSvd>0</bCustSvd>
|
||||
<UseEnv>0</UseEnv>
|
||||
<BinPath></BinPath>
|
||||
<IncludePath></IncludePath>
|
||||
<LibPath></LibPath>
|
||||
<RegisterFilePath></RegisterFilePath>
|
||||
<DBRegisterFilePath></DBRegisterFilePath>
|
||||
<TargetStatus>
|
||||
<Error>0</Error>
|
||||
<ExitCodeStop>0</ExitCodeStop>
|
||||
<ButtonStop>0</ButtonStop>
|
||||
<NotGenerated>0</NotGenerated>
|
||||
<InvalidFlash>1</InvalidFlash>
|
||||
</TargetStatus>
|
||||
<OutputDirectory>.\Objects\</OutputDirectory>
|
||||
<OutputName>peripheral</OutputName>
|
||||
<CreateExecutable>1</CreateExecutable>
|
||||
<CreateLib>0</CreateLib>
|
||||
<CreateHexFile>0</CreateHexFile>
|
||||
<DebugInformation>1</DebugInformation>
|
||||
<BrowseInformation>1</BrowseInformation>
|
||||
<ListingPath>.\Listings\</ListingPath>
|
||||
<HexFormatSelection>1</HexFormatSelection>
|
||||
<Merge32K>0</Merge32K>
|
||||
<CreateBatchFile>0</CreateBatchFile>
|
||||
<BeforeCompile>
|
||||
<RunUserProg1>0</RunUserProg1>
|
||||
<RunUserProg2>0</RunUserProg2>
|
||||
<UserProg1Name>fromelf --bin --output=.\Output\0_ram.bin !L</UserProg1Name>
|
||||
<UserProg2Name>.\Output\xip_program.bat</UserProg2Name>
|
||||
<UserProg1Dos16Mode>0</UserProg1Dos16Mode>
|
||||
<UserProg2Dos16Mode>0</UserProg2Dos16Mode>
|
||||
<nStopU1X>0</nStopU1X>
|
||||
<nStopU2X>0</nStopU2X>
|
||||
</BeforeCompile>
|
||||
<BeforeMake>
|
||||
<RunUserProg1>0</RunUserProg1>
|
||||
<RunUserProg2>0</RunUserProg2>
|
||||
<UserProg1Name>fromelf --text -a -c --output=@L_asm !L</UserProg1Name>
|
||||
<UserProg2Name>.\tools\Xincboot_tool .\Output\0_ram.bin .\Output\1_ram_download.bin</UserProg2Name>
|
||||
<UserProg1Dos16Mode>0</UserProg1Dos16Mode>
|
||||
<UserProg2Dos16Mode>0</UserProg2Dos16Mode>
|
||||
<nStopB1X>0</nStopB1X>
|
||||
<nStopB2X>0</nStopB2X>
|
||||
</BeforeMake>
|
||||
<AfterMake>
|
||||
<RunUserProg1>1</RunUserProg1>
|
||||
<RunUserProg2>1</RunUserProg2>
|
||||
<UserProg1Name>fromelf --bin --output=.\Output\0_ram.bin !L</UserProg1Name>
|
||||
<UserProg2Name>.\Output\xip_program.bat</UserProg2Name>
|
||||
<UserProg1Dos16Mode>0</UserProg1Dos16Mode>
|
||||
<UserProg2Dos16Mode>0</UserProg2Dos16Mode>
|
||||
<nStopA1X>0</nStopA1X>
|
||||
<nStopA2X>0</nStopA2X>
|
||||
</AfterMake>
|
||||
<SelectedForBatchBuild>0</SelectedForBatchBuild>
|
||||
<SVCSIdString></SVCSIdString>
|
||||
</TargetCommonOption>
|
||||
<CommonProperty>
|
||||
<UseCPPCompiler>0</UseCPPCompiler>
|
||||
<RVCTCodeConst>0</RVCTCodeConst>
|
||||
<RVCTZI>0</RVCTZI>
|
||||
<RVCTOtherData>0</RVCTOtherData>
|
||||
<ModuleSelection>0</ModuleSelection>
|
||||
<IncludeInBuild>1</IncludeInBuild>
|
||||
<AlwaysBuild>0</AlwaysBuild>
|
||||
<GenerateAssemblyFile>0</GenerateAssemblyFile>
|
||||
<AssembleAssemblyFile>0</AssembleAssemblyFile>
|
||||
<PublicsOnly>0</PublicsOnly>
|
||||
<StopOnExitCode>3</StopOnExitCode>
|
||||
<CustomArgument></CustomArgument>
|
||||
<IncludeLibraryModules></IncludeLibraryModules>
|
||||
<ComprImg>1</ComprImg>
|
||||
</CommonProperty>
|
||||
<DllOption>
|
||||
<SimDllName>SARMCM3.DLL</SimDllName>
|
||||
<SimDllArguments> </SimDllArguments>
|
||||
<SimDlgDll>DARMCM1.DLL</SimDlgDll>
|
||||
<SimDlgDllArguments>-pCM0</SimDlgDllArguments>
|
||||
<TargetDllName>SARMCM3.DLL</TargetDllName>
|
||||
<TargetDllArguments> </TargetDllArguments>
|
||||
<TargetDlgDll>TARMCM1.DLL</TargetDlgDll>
|
||||
<TargetDlgDllArguments>-pCM0</TargetDlgDllArguments>
|
||||
</DllOption>
|
||||
<DebugOption>
|
||||
<OPTHX>
|
||||
<HexSelection>1</HexSelection>
|
||||
<HexRangeLowAddress>0</HexRangeLowAddress>
|
||||
<HexRangeHighAddress>0</HexRangeHighAddress>
|
||||
<HexOffset>0</HexOffset>
|
||||
<Oh166RecLen>16</Oh166RecLen>
|
||||
</OPTHX>
|
||||
</DebugOption>
|
||||
<Utilities>
|
||||
<Flash1>
|
||||
<UseTargetDll>1</UseTargetDll>
|
||||
<UseExternalTool>0</UseExternalTool>
|
||||
<RunIndependent>0</RunIndependent>
|
||||
<UpdateFlashBeforeDebugging>1</UpdateFlashBeforeDebugging>
|
||||
<Capability>1</Capability>
|
||||
<DriverSelection>4096</DriverSelection>
|
||||
</Flash1>
|
||||
<bUseTDR>1</bUseTDR>
|
||||
<Flash2>BIN\UL2CM3.DLL</Flash2>
|
||||
<Flash3>"" ()</Flash3>
|
||||
<Flash4></Flash4>
|
||||
<pFcarmOut></pFcarmOut>
|
||||
<pFcarmGrp></pFcarmGrp>
|
||||
<pFcArmRoot></pFcArmRoot>
|
||||
<FcArmLst>0</FcArmLst>
|
||||
</Utilities>
|
||||
<TargetArmAds>
|
||||
<ArmAdsMisc>
|
||||
<GenerateListings>0</GenerateListings>
|
||||
<asHll>1</asHll>
|
||||
<asAsm>1</asAsm>
|
||||
<asMacX>1</asMacX>
|
||||
<asSyms>1</asSyms>
|
||||
<asFals>1</asFals>
|
||||
<asDbgD>1</asDbgD>
|
||||
<asForm>1</asForm>
|
||||
<ldLst>0</ldLst>
|
||||
<ldmm>1</ldmm>
|
||||
<ldXref>1</ldXref>
|
||||
<BigEnd>0</BigEnd>
|
||||
<AdsALst>1</AdsALst>
|
||||
<AdsACrf>1</AdsACrf>
|
||||
<AdsANop>0</AdsANop>
|
||||
<AdsANot>0</AdsANot>
|
||||
<AdsLLst>1</AdsLLst>
|
||||
<AdsLmap>1</AdsLmap>
|
||||
<AdsLcgr>1</AdsLcgr>
|
||||
<AdsLsym>1</AdsLsym>
|
||||
<AdsLszi>1</AdsLszi>
|
||||
<AdsLtoi>1</AdsLtoi>
|
||||
<AdsLsun>1</AdsLsun>
|
||||
<AdsLven>1</AdsLven>
|
||||
<AdsLsxf>1</AdsLsxf>
|
||||
<RvctClst>0</RvctClst>
|
||||
<GenPPlst>0</GenPPlst>
|
||||
<AdsCpuType>"Cortex-M0"</AdsCpuType>
|
||||
<RvctDeviceName></RvctDeviceName>
|
||||
<mOS>0</mOS>
|
||||
<uocRom>0</uocRom>
|
||||
<uocRam>0</uocRam>
|
||||
<hadIROM>1</hadIROM>
|
||||
<hadIRAM>1</hadIRAM>
|
||||
<hadXRAM>0</hadXRAM>
|
||||
<uocXRam>0</uocXRam>
|
||||
<RvdsVP>0</RvdsVP>
|
||||
<RvdsMve>0</RvdsMve>
|
||||
<RvdsCdeCp>0</RvdsCdeCp>
|
||||
<nBranchProt>0</nBranchProt>
|
||||
<hadIRAM2>0</hadIRAM2>
|
||||
<hadIROM2>0</hadIROM2>
|
||||
<StupSel>8</StupSel>
|
||||
<useUlib>0</useUlib>
|
||||
<EndSel>1</EndSel>
|
||||
<uLtcg>0</uLtcg>
|
||||
<nSecure>0</nSecure>
|
||||
<RoSelD>3</RoSelD>
|
||||
<RwSelD>3</RwSelD>
|
||||
<CodeSel>0</CodeSel>
|
||||
<OptFeed>0</OptFeed>
|
||||
<NoZi1>0</NoZi1>
|
||||
<NoZi2>0</NoZi2>
|
||||
<NoZi3>0</NoZi3>
|
||||
<NoZi4>0</NoZi4>
|
||||
<NoZi5>0</NoZi5>
|
||||
<Ro1Chk>0</Ro1Chk>
|
||||
<Ro2Chk>0</Ro2Chk>
|
||||
<Ro3Chk>0</Ro3Chk>
|
||||
<Ir1Chk>0</Ir1Chk>
|
||||
<Ir2Chk>0</Ir2Chk>
|
||||
<Ra1Chk>0</Ra1Chk>
|
||||
<Ra2Chk>0</Ra2Chk>
|
||||
<Ra3Chk>0</Ra3Chk>
|
||||
<Im1Chk>0</Im1Chk>
|
||||
<Im2Chk>0</Im2Chk>
|
||||
<OnChipMemories>
|
||||
<Ocm1>
|
||||
<Type>0</Type>
|
||||
<StartAddress>0x0</StartAddress>
|
||||
<Size>0x0</Size>
|
||||
</Ocm1>
|
||||
<Ocm2>
|
||||
<Type>0</Type>
|
||||
<StartAddress>0x0</StartAddress>
|
||||
<Size>0x0</Size>
|
||||
</Ocm2>
|
||||
<Ocm3>
|
||||
<Type>0</Type>
|
||||
<StartAddress>0x0</StartAddress>
|
||||
<Size>0x0</Size>
|
||||
</Ocm3>
|
||||
<Ocm4>
|
||||
<Type>0</Type>
|
||||
<StartAddress>0x0</StartAddress>
|
||||
<Size>0x0</Size>
|
||||
</Ocm4>
|
||||
<Ocm5>
|
||||
<Type>0</Type>
|
||||
<StartAddress>0x0</StartAddress>
|
||||
<Size>0x0</Size>
|
||||
</Ocm5>
|
||||
<Ocm6>
|
||||
<Type>0</Type>
|
||||
<StartAddress>0x0</StartAddress>
|
||||
<Size>0x0</Size>
|
||||
</Ocm6>
|
||||
<IRAM>
|
||||
<Type>0</Type>
|
||||
<StartAddress>0x20000000</StartAddress>
|
||||
<Size>0x20000</Size>
|
||||
</IRAM>
|
||||
<IROM>
|
||||
<Type>1</Type>
|
||||
<StartAddress>0x0</StartAddress>
|
||||
<Size>0x40000</Size>
|
||||
</IROM>
|
||||
<XRAM>
|
||||
<Type>0</Type>
|
||||
<StartAddress>0x0</StartAddress>
|
||||
<Size>0x0</Size>
|
||||
</XRAM>
|
||||
<OCR_RVCT1>
|
||||
<Type>1</Type>
|
||||
<StartAddress>0x0</StartAddress>
|
||||
<Size>0x0</Size>
|
||||
</OCR_RVCT1>
|
||||
<OCR_RVCT2>
|
||||
<Type>1</Type>
|
||||
<StartAddress>0x0</StartAddress>
|
||||
<Size>0x0</Size>
|
||||
</OCR_RVCT2>
|
||||
<OCR_RVCT3>
|
||||
<Type>1</Type>
|
||||
<StartAddress>0x0</StartAddress>
|
||||
<Size>0x0</Size>
|
||||
</OCR_RVCT3>
|
||||
<OCR_RVCT4>
|
||||
<Type>1</Type>
|
||||
<StartAddress>0x0</StartAddress>
|
||||
<Size>0x40000</Size>
|
||||
</OCR_RVCT4>
|
||||
<OCR_RVCT5>
|
||||
<Type>1</Type>
|
||||
<StartAddress>0x0</StartAddress>
|
||||
<Size>0x0</Size>
|
||||
</OCR_RVCT5>
|
||||
<OCR_RVCT6>
|
||||
<Type>0</Type>
|
||||
<StartAddress>0x0</StartAddress>
|
||||
<Size>0x0</Size>
|
||||
</OCR_RVCT6>
|
||||
<OCR_RVCT7>
|
||||
<Type>0</Type>
|
||||
<StartAddress>0x0</StartAddress>
|
||||
<Size>0x0</Size>
|
||||
</OCR_RVCT7>
|
||||
<OCR_RVCT8>
|
||||
<Type>0</Type>
|
||||
<StartAddress>0x0</StartAddress>
|
||||
<Size>0x0</Size>
|
||||
</OCR_RVCT8>
|
||||
<OCR_RVCT9>
|
||||
<Type>0</Type>
|
||||
<StartAddress>0x20000000</StartAddress>
|
||||
<Size>0x20000</Size>
|
||||
</OCR_RVCT9>
|
||||
<OCR_RVCT10>
|
||||
<Type>0</Type>
|
||||
<StartAddress>0x0</StartAddress>
|
||||
<Size>0x0</Size>
|
||||
</OCR_RVCT10>
|
||||
</OnChipMemories>
|
||||
<RvctStartVector></RvctStartVector>
|
||||
</ArmAdsMisc>
|
||||
<Cads>
|
||||
<interw>1</interw>
|
||||
<Optim>4</Optim>
|
||||
<oTime>0</oTime>
|
||||
<SplitLS>0</SplitLS>
|
||||
<OneElfS>1</OneElfS>
|
||||
<Strict>0</Strict>
|
||||
<EnumInt>0</EnumInt>
|
||||
<PlainCh>0</PlainCh>
|
||||
<Ropi>0</Ropi>
|
||||
<Rwpi>0</Rwpi>
|
||||
<wLevel>2</wLevel>
|
||||
<uThumb>0</uThumb>
|
||||
<uSurpInc>0</uSurpInc>
|
||||
<uC99>1</uC99>
|
||||
<uGnu>1</uGnu>
|
||||
<useXO>0</useXO>
|
||||
<v6Lang>3</v6Lang>
|
||||
<v6LangP>3</v6LangP>
|
||||
<vShortEn>1</vShortEn>
|
||||
<vShortWch>1</vShortWch>
|
||||
<v6Lto>0</v6Lto>
|
||||
<v6WtE>0</v6WtE>
|
||||
<v6Rtti>0</v6Rtti>
|
||||
<VariousControls>
|
||||
<MiscControls>--gnu --diag_suppress=66</MiscControls>
|
||||
<Define>XC60XX DEBUG_ENABLE USE_XIP=1 DMAC_NVIC_ENABLE=0</Define>
|
||||
<Undefine></Undefine>
|
||||
<IncludePath>..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS;..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device;..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup;..\app\Startup\xc60xx;..\app\api;..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver;..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register</IncludePath>
|
||||
</VariousControls>
|
||||
</Cads>
|
||||
<Aads>
|
||||
<interw>1</interw>
|
||||
<Ropi>0</Ropi>
|
||||
<Rwpi>0</Rwpi>
|
||||
<thumb>0</thumb>
|
||||
<SplitLS>0</SplitLS>
|
||||
<SwStkChk>0</SwStkChk>
|
||||
<NoWarn>0</NoWarn>
|
||||
<uSurpInc>0</uSurpInc>
|
||||
<useXO>0</useXO>
|
||||
<ClangAsOpt>4</ClangAsOpt>
|
||||
<VariousControls>
|
||||
<MiscControls></MiscControls>
|
||||
<Define></Define>
|
||||
<Undefine></Undefine>
|
||||
<IncludePath></IncludePath>
|
||||
</VariousControls>
|
||||
</Aads>
|
||||
<LDads>
|
||||
<umfTarg>0</umfTarg>
|
||||
<Ropi>0</Ropi>
|
||||
<Rwpi>0</Rwpi>
|
||||
<noStLib>0</noStLib>
|
||||
<RepFail>1</RepFail>
|
||||
<useFile>0</useFile>
|
||||
<TextAddressRange>0x00000000</TextAddressRange>
|
||||
<DataAddressRange>0x20000000</DataAddressRange>
|
||||
<pXoBase></pXoBase>
|
||||
<ScatterFile>.\Linker\cpu_xip.scat</ScatterFile>
|
||||
<IncludeLibs></IncludeLibs>
|
||||
<IncludeLibsPath></IncludeLibsPath>
|
||||
<Misc></Misc>
|
||||
<LinkerInputFile></LinkerInputFile>
|
||||
<DisabledWarnings></DisabledWarnings>
|
||||
</LDads>
|
||||
</TargetArmAds>
|
||||
</TargetOption>
|
||||
<Groups>
|
||||
<Group>
|
||||
<GroupName>Startup</GroupName>
|
||||
<Files>
|
||||
<File>
|
||||
<FileName>core_cm0.h</FileName>
|
||||
<FileType>5</FileType>
|
||||
<FilePath>..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>startup_xinc.s</FileName>
|
||||
<FileType>2</FileType>
|
||||
<FilePath>..\app\Startup\xc60xx\startup_xinc.s</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>system_xinc.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\system_xinc.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>system_it_xinc.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\system_it_xinc.c</FilePath>
|
||||
</File>
|
||||
</Files>
|
||||
</Group>
|
||||
<Group>
|
||||
<GroupName>Application</GroupName>
|
||||
<Files>
|
||||
<File>
|
||||
<FileName>main.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>..\app\src\main.c</FilePath>
|
||||
</File>
|
||||
</Files>
|
||||
</Group>
|
||||
<Group>
|
||||
<GroupName>bsp</GroupName>
|
||||
<Files>
|
||||
<File>
|
||||
<FileName>pwm.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>..\app\src\pwm.c</FilePath>
|
||||
</File>
|
||||
</Files>
|
||||
</Group>
|
||||
<Group>
|
||||
<GroupName>Drivers</GroupName>
|
||||
<Files>
|
||||
<File>
|
||||
<FileName>ringbuffer.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>xc_drv_aotimer.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>xc_drv_clock.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>xc_drv_gpio.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>xc_drv_i2c.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>xc_drv_pwm.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>xc_drv_pwr.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>xc_drv_sw_i2c.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>xc_drv_systick.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>xc_drv_timer.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>xc_drv_uart.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>xc_drv_adc.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>xc_drv_fmc_spi.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi.c</FilePath>
|
||||
</File>
|
||||
</Files>
|
||||
</Group>
|
||||
</Groups>
|
||||
</Target>
|
||||
</Targets>
|
||||
|
||||
<RTE>
|
||||
<apis/>
|
||||
<components/>
|
||||
<files>
|
||||
<file attr="config" category="linkerScript" condition="ARMCC5" name="Device\ARM\ARMCM0\Source\ARM\ARMCM0_ac5.sct" version="1.0.0">
|
||||
<instance index="0" removed="1">RTE\Device\ARMCM0\ARMCM0_ac5.sct</instance>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="ARM" Cversion="2.0.3" condition="ARMCM0 CMSIS" isDefaultVariant="1"/>
|
||||
<package name="CMSIS" schemaVersion="1.3" url="http://www.keil.com/pack/" vendor="ARM" version="5.8.0"/>
|
||||
<targetInfos/>
|
||||
</file>
|
||||
<file attr="config" category="sourceC" name="Device\ARM\ARMCM0\Source\startup_ARMCM0.c" version="2.0.3">
|
||||
<instance index="0" removed="1">RTE\Device\ARMCM0\startup_ARMCM0.c</instance>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="ARM" Cversion="2.0.3" condition="ARMCM0 CMSIS" isDefaultVariant="1"/>
|
||||
<package name="CMSIS" schemaVersion="1.3" url="http://www.keil.com/pack/" vendor="ARM" version="5.8.0"/>
|
||||
<targetInfos/>
|
||||
</file>
|
||||
<file attr="config" category="sourceC" name="Device\ARM\ARMCM0\Source\system_ARMCM0.c" version="1.0.0">
|
||||
<instance index="0" removed="1">RTE\Device\ARMCM0\system_ARMCM0.c</instance>
|
||||
<component Cclass="Device" Cgroup="Startup" Cvariant="C Startup" Cvendor="ARM" Cversion="2.0.3" condition="ARMCM0 CMSIS" isDefaultVariant="1"/>
|
||||
<package name="CMSIS" schemaVersion="1.3" url="http://www.keil.com/pack/" vendor="ARM" version="5.8.0"/>
|
||||
<targetInfos/>
|
||||
</file>
|
||||
</files>
|
||||
</RTE>
|
||||
|
||||
<LayerInfo>
|
||||
<Layers>
|
||||
<Layer>
|
||||
<LayName><Project Info></LayName>
|
||||
<LayTarg>0</LayTarg>
|
||||
<LayPrjMark>1</LayPrjMark>
|
||||
</Layer>
|
||||
</Layers>
|
||||
</LayerInfo>
|
||||
|
||||
</Project>
|
||||
Reference in New Issue
Block a user