无pwm输出的原因是PA2同时使用了TM2_CH3和USART2,现在使用PA1,TIM2_CH2作为电机的PWM,后期画板子需要修改此处
This commit is contained in:
parent
57b7ea65aa
commit
5a477078cf
@ -17,6 +17,6 @@ void bsp_BIN1_OFF(void);
|
||||
void bsp_BIN2_ON(void);
|
||||
void bsp_BIN2_OFF(void);
|
||||
|
||||
void PWM_SetCompare3(uint16_t Compare);
|
||||
void bsp_changeMotorSpeed(uint16_t Compare);
|
||||
|
||||
#endif
|
||||
|
@ -25,7 +25,7 @@
|
||||
#define TIM_MOTOR_PERIPH_RCC RCC_APB1Periph_TIM2
|
||||
#define TIM_MOTOR_PWN_GPIO_RCC RCC_APB2Periph_GPIOA
|
||||
#define TIM_MOTOR_PWN_GPIO_PORT GPIOA
|
||||
#define TIM_MOTOR_PWN_GPIO_PIN GPIO_Pin_2
|
||||
#define TIM_MOTOR_PWN_GPIO_PIN GPIO_Pin_1
|
||||
|
||||
/*************************************************************************************
|
||||
* @brief 对外输出至电机驱动板IN接口的GPIO初始化
|
||||
@ -79,7 +79,7 @@ void bsp_InitGPIO_MotorOut(void)
|
||||
/* 1. 使能TIM时钟 */
|
||||
RCC_APB1PeriphClockCmd(TIM_MOTOR_PERIPH_RCC, ENABLE);
|
||||
/* 2. 使能对应的GPIO引脚 */
|
||||
GPIO_Init(TIM_MOTOR_PWN_GPIO_PORT, &GPIO_InitStructure); //初始化 GPIOA.2
|
||||
GPIO_Init(TIM_MOTOR_PWN_GPIO_PORT, &GPIO_InitStructure); //初始化
|
||||
RCC_APB2PeriphClockCmd(TIM_MOTOR_PWN_GPIO_RCC, ENABLE); //使能 PA 端口时钟
|
||||
GPIO_InitStructure.GPIO_Pin = TIM_MOTOR_PWN_GPIO_PIN;
|
||||
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
|
||||
@ -96,11 +96,12 @@ void bsp_InitGPIO_MotorOut(void)
|
||||
TIM_TimeBaseInit(TIM_MOTOR, &TIM_TimeBaseStructure);
|
||||
/* 5. 输出比较 */
|
||||
TIM_OCStructInit(&TIM_OCInitStructure);
|
||||
TIM_OCInitStructure.TIM_OCMode = TIM_OCMode_PWM1;
|
||||
TIM_OCInitStructure.TIM_OCPolarity = TIM_OCPolarity_High;
|
||||
TIM_OCInitStructure.TIM_OutputState = TIM_OutputState_Enable;
|
||||
TIM_OCInitStructure.TIM_Pulse = 0; //CCR
|
||||
TIM_OC3Init(TIM_MOTOR, &TIM_OCInitStructure);
|
||||
TIM_OCInitStructure.TIM_OCMode = TIM_OCMode_PWM1; // PWM模式1(CNT<CCR时高电平)
|
||||
TIM_OCInitStructure.TIM_OCPolarity = TIM_OCPolarity_High; // 高电平有效
|
||||
TIM_OCInitStructure.TIM_OutputState = TIM_OutputState_Enable; // 使能输出
|
||||
TIM_OCInitStructure.TIM_Pulse = 0; //CCR 占空比
|
||||
// 应用至TIM2_CHx[1,7](@ref)
|
||||
TIM_OC2Init(TIM_MOTOR, &TIM_OCInitStructure);
|
||||
|
||||
TIM_ARRPreloadConfig(TIM_MOTOR, ENABLE);
|
||||
/* 6. TIMx enable counter */
|
||||
@ -200,14 +201,14 @@ void bsp_BIN2_OFF(void)
|
||||
GPIO_ResetBits(B_IN2_GPIO_PORT, B_IN2_GPIO_PIN);
|
||||
}
|
||||
/*************************************************************************************
|
||||
* @brief PWM 通道3 设置pwm
|
||||
* @brief 通过修改pwm,来修改电机的速度
|
||||
* @param[in/out] Compare【参数注释】
|
||||
*
|
||||
* @warning 【不可重入,阻塞等警告】
|
||||
* @note 【重大修改】
|
||||
*************************************************************************************/
|
||||
void PWM_SetCompare3(uint16_t Compare)
|
||||
void bsp_changeMotorSpeed(uint16_t Compare)
|
||||
{
|
||||
TIM_SetCompare3(TIM_MOTOR, Compare);
|
||||
TIM_SetCompare2(TIM_MOTOR, Compare);
|
||||
}
|
||||
|
||||
|
@ -9,13 +9,13 @@
|
||||
|
||||
|
||||
/* debug log专用的usart外设 */
|
||||
#define USART_DEBUG_TYPE (USART2)
|
||||
#define USART_DEBUG_PERIPH_RCC (RCC_APB1Periph_USART2)
|
||||
#define USART_DEBUG_GPIO_RCC (RCC_APB2Periph_GPIOA)
|
||||
#define USART_DEBUG_TX_PORT (GPIOA)
|
||||
#define USART_DEBUG_TX_PIN (GPIO_Pin_2)
|
||||
#define USART_DEBUG_RX_PORT (GPIOA)
|
||||
#define USART_DEBUG_RX_PIN (GPIO_Pin_3)
|
||||
#define USART_DEBUG_TYPE (USART3)
|
||||
#define USART_DEBUG_PERIPH_RCC (RCC_APB1Periph_USART3)
|
||||
#define USART_DEBUG_GPIO_RCC (RCC_APB2Periph_GPIOB)
|
||||
#define USART_DEBUG_TX_PORT (GPIOB)
|
||||
#define USART_DEBUG_TX_PIN (GPIO_Pin_10)
|
||||
#define USART_DEBUG_RX_PORT (GPIOB)
|
||||
#define USART_DEBUG_RX_PIN (GPIO_Pin_11)
|
||||
#define USART_DEBUG_BAUD (115200u)
|
||||
|
||||
#define EN_USART1_RX (0)
|
||||
@ -34,11 +34,9 @@ void bsp_usart_debug_init(void)
|
||||
NVIC_InitTypeDef NVIC_InitStructure;
|
||||
|
||||
/* 1. 串口时钟使能,GPIO 时钟使能,复用时钟使能 */
|
||||
//使能 USART1,GPIOA 时钟
|
||||
// RCC_APB2PeriphClockCmd(USART_DEBUG_PERIPH_RCC | USART_DEBUG_GPIO_RCC, ENABLE);
|
||||
//使能 USART2,GPIOA 时钟
|
||||
//使能 USART的GPIO 时钟
|
||||
RCC_APB2PeriphClockCmd(USART_DEBUG_GPIO_RCC, ENABLE);
|
||||
// usart1在APB2上 ,而usart2在APB1上
|
||||
// usart1在APB2上 ,而usart2和usart3在APB1上
|
||||
RCC_APB1PeriphClockCmd(USART_DEBUG_PERIPH_RCC, ENABLE);
|
||||
/* 2. 串口复位 */
|
||||
USART_DeInit(USART_DEBUG_TYPE);
|
||||
@ -60,18 +58,8 @@ void bsp_usart_debug_init(void)
|
||||
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None; //无硬件数据流控制
|
||||
USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx; //收发模式
|
||||
USART_Init(USART_DEBUG_TYPE, &USART_InitStructure);
|
||||
#if EN_USART1_RX //如果使能了接收
|
||||
/* 5. 初始化 NVIC */
|
||||
NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQn;
|
||||
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 3 ; //抢占优先级 3
|
||||
NVIC_InitStructure.NVIC_IRQChannelSubPriority = 3; //子优先级 3
|
||||
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE; //IRQ 通道使能
|
||||
NVIC_Init(&NVIC_InitStructure); //中断优先级初始化
|
||||
/* 开启中断*/
|
||||
USART_ITConfig(USART_DEBUG_TYPE, USART_IT_RXNE, ENABLE); //开启中断
|
||||
// USART_ITConfig(USART_DEBUG_TYPE, USART_IT_TC, ENABLE); //开启中断
|
||||
#endif
|
||||
/* 6. 使能串口 */
|
||||
|
||||
/* 5. 使能串口 */
|
||||
USART_Cmd(USART_DEBUG_TYPE, ENABLE);
|
||||
}
|
||||
|
||||
|
@ -15,19 +15,19 @@ void mw_SetMotorSpeed_Left(int8_t Speed)
|
||||
{
|
||||
bsp_AIN1_ON();
|
||||
bsp_AIN2_OFF();
|
||||
PWM_SetCompare3(Speed);
|
||||
bsp_changeMotorSpeed(Speed);
|
||||
}
|
||||
else if(Speed==0)
|
||||
{
|
||||
bsp_AIN1_ON();
|
||||
bsp_AIN2_ON();
|
||||
PWM_SetCompare3(Speed);
|
||||
bsp_changeMotorSpeed(Speed);
|
||||
}
|
||||
else
|
||||
{
|
||||
bsp_AIN1_OFF();
|
||||
bsp_AIN2_ON();
|
||||
PWM_SetCompare3(-Speed);
|
||||
bsp_changeMotorSpeed(-Speed);
|
||||
}
|
||||
}
|
||||
/*************************************************************************************
|
||||
@ -43,19 +43,19 @@ void mw_SetMotorSpeed_Right(int8_t Speed)
|
||||
{
|
||||
bsp_BIN1_ON();
|
||||
bsp_BIN2_OFF();
|
||||
PWM_SetCompare3(Speed);
|
||||
bsp_changeMotorSpeed(Speed);
|
||||
}
|
||||
else if(Speed==0)
|
||||
{
|
||||
bsp_BIN1_ON();
|
||||
bsp_BIN2_ON();
|
||||
PWM_SetCompare3(Speed);
|
||||
bsp_changeMotorSpeed(Speed);
|
||||
}
|
||||
else
|
||||
{
|
||||
bsp_BIN1_OFF();
|
||||
bsp_BIN2_ON();
|
||||
PWM_SetCompare3(-Speed);
|
||||
bsp_changeMotorSpeed(-Speed);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
:10000000C0040020050100080D0100080F010008D0
|
||||
:10001000110100081301000815010008000000008C
|
||||
:1000200000000000000000000000000017010008B0
|
||||
:1000300019010008000000001B010008F10400087D
|
||||
:1000300019010008000000001B010008E10400088D
|
||||
:100040001F0100081F0100081F0100081F01000810
|
||||
:100050001F0100081F0100081F0100081F01000800
|
||||
:100060001F0100081F0100081F0100081F010008F0
|
||||
@ -10,18 +10,18 @@
|
||||
:100080001F0100081F0100081F0100081F010008D0
|
||||
:100090001F0100081F0100081F0100081F010008C0
|
||||
:1000A0001F0100081F0100081F0100081F010008B0
|
||||
:1000B0009D050008A10500081F0100081F01000898
|
||||
:1000B0008D050008910500081F0100081F010008B8
|
||||
:1000C0001F0100081F0100081F0100081F01000890
|
||||
:1000D0001F010008290800081F0100081F0100086F
|
||||
:1000D0001F0100081D0800081F0100081F0100087B
|
||||
:1000E0001F0100081F0100081F010008DFF810D0E1
|
||||
:1000F00000F02CF80048004761130008AFF30080BF
|
||||
:1000F00000F02CF80048004769130008AFF30080B7
|
||||
:10010000C00400200648804706480047FEE7FEE797
|
||||
:10011000FEE7FEE7FEE7FEE7FEE7FEE7FEE7FEE7B7
|
||||
:100120003D050008ED00000840EA01039B0703D0ED
|
||||
:100120002D050008ED00000840EA01039B0703D0FD
|
||||
:1001300009E008C9121F08C0042AFAD203E011F826
|
||||
:10014000013B00F8013B521EF9D27047064C074DA7
|
||||
:1001500006E0E06840F0010394E807009847103497
|
||||
:10016000AC42F6D3FFF7C6FFB0150008D015000863
|
||||
:10016000AC42F6D3FFF7C6FFB8150008D815000853
|
||||
:100170002DE9F0410246002500260020002300243E
|
||||
:10018000002791F803C00CF00F0591F803C00CF0A4
|
||||
:10019000100CBCF1000F03D091F802C04CEA050529
|
||||
@ -41,318 +41,318 @@
|
||||
:10027000010808FA0CF8C2F81080401C0828CED3F8
|
||||
:100280005460BDE8F0814161704701617047000032
|
||||
:1002900002490143024A1160704700000000FA055C
|
||||
:1002A0000CED00E010B5044621464FF0804000F010
|
||||
:1002B00067FA10BD29B1064AD2690243044BDA61DC
|
||||
:1002C00004E0034AD2698243014BDA6170470000BF
|
||||
:1002D0000010024029B1064A12690243044B1A6118
|
||||
:1002E00004E0034A12698243014B1A61704700001F
|
||||
:1002F0000010024029B1064A92690243044B9A61F8
|
||||
:1003000004E0034A92698243014B9A6170470000FE
|
||||
:100310000010024029B1064AD2680243044BDA6059
|
||||
:1003200004E0034AD2688243014BDA607047000060
|
||||
:100330000010024030B500210022002400232D4D82
|
||||
:100340006D6805F00C0121B1042905D0082923D1DD
|
||||
:1003500005E0294D056022E0274D05601FE0254D91
|
||||
:100360006D6805F47012234D6D6805F48034022524
|
||||
:1003700005EB92421CB9214D554305600BE01D4D24
|
||||
:100380006D6805F400351DB11C4D5543056002E054
|
||||
:10039000194D5543056002E0174D056000BF00BFD1
|
||||
:1003A000144D6D6805F0F0010909154D6B5C056889
|
||||
:1003B000DD4045600F4D6D6805F4E061090A104DA0
|
||||
:1003C0006B5C4568DD4085600A4D6D6805F46051E1
|
||||
:1003D000C90A0B4D6B5C4568DD40C560054D6D6815
|
||||
:1003E00005F44041890B074D6B5CC568B5FBF3F51F
|
||||
:1003F000056130BD0010024000127A0000093D0086
|
||||
:10040000400000205000002010B500F001F810BDA1
|
||||
:100410000CB50020019000903348006840F4803013
|
||||
:100420003149086000BF3048006800F40030009097
|
||||
:100430000198401C0190009818B90198B0F5A06F80
|
||||
:10044000F1D12948006800F4003010B1012000907B
|
||||
:1004500001E0002000900098012843D12348006863
|
||||
:1004600040F01000214908600846006820F00700AD
|
||||
:1004700008600846006840F0020008601A484068BA
|
||||
:10048000194948600846406848600846406840F49A
|
||||
:10049000806048600846406820F47C104860084648
|
||||
:1004A000406840F4E81048600846006840F08070FA
|
||||
:1004B000086000BF0C48006800F000700028F9D008
|
||||
:1004C0000948406820F00300074948600846406832
|
||||
:1004D00040F00200486000BF0348406800F00C0094
|
||||
:1004E0000828F9D10CBD0000001002400020024095
|
||||
:1004F00010B500F001F810BD10B50D48006840B10E
|
||||
:100500000B480068401E0A49086010B901200949DB
|
||||
:100510000870002408E004EB4401074A02EB810064
|
||||
:1005200000F0B4FD601CC4B2042CF4DB10BD00006C
|
||||
:100530000C000020100000206800002010B51348B7
|
||||
:10054000006840F001001149086008464068104901
|
||||
:1005500008400E494860084600680E4908400B49AB
|
||||
:1005600008600846006820F480200860084640685B
|
||||
:1005700020F4FE0048604FF41F008860FFF744FF3E
|
||||
:100580004FF000600449086010BD000000100240F8
|
||||
:100590000000FFF8FFFFF6FE08ED00E070470000E6
|
||||
:1005A00010B50121264800F070F818B10121244847
|
||||
:1005B00000F05CF80221224800F067F858B10221EF
|
||||
:1005C0001F4800F053F8002202211D4800F06EF889
|
||||
:1005D0001C48006880470421194800F056F858B1BB
|
||||
:1005E0000421174800F042F800220421144800F0CA
|
||||
:1005F0005DF81548006880470821114800F045F86B
|
||||
:1006000058B108210E4800F031F8002208210C48AA
|
||||
:1006100000F04CF80D48006880471021084800F0B1
|
||||
:1006200034F858B11021064800F020F800221021BB
|
||||
:10063000034800F03BF806480068804710BD000002
|
||||
:1006400000040040180000201C00002020000020B2
|
||||
:100650002400002021B1028842F08002028004E0E0
|
||||
:1006600002884FF67F731A4002807047CA430282A5
|
||||
:10067000704721B1028842F00102028004E0028842
|
||||
:100680004FF6FE731A400280704730B502460020D4
|
||||
:1006900000230024158A05EA0103958905EA01046F
|
||||
:1006A00013B10CB1012000E0002030BD1AB18389E4
|
||||
:1006B0000B43838102E083898B43838170470189E7
|
||||
:1006C0004FF6F872114001817047000070B50024A8
|
||||
:1006D00000220023058C4FF6FF6635400584028C0E
|
||||
:1006E0008388848B4FF68F752C404FF6FC752C4019
|
||||
:1006F0000D882C434FF6FF552A400D894FF6FF76A3
|
||||
:1007000006EA05252A434D8806EA05252A43154DA4
|
||||
:10071000A84202D0144DA8421DD14FF2FF752A40C5
|
||||
:100720004D894FF6FF7606EA05252A434FF6FF3539
|
||||
:100730002A408D8806EA05252A434EF6FF752B4090
|
||||
:100740004DF6FF752B408D8906EA05152B43CD89A3
|
||||
:1007500006EA05152B4383808483CD888587028430
|
||||
:1007600070BD0000002C01400034014000210180D8
|
||||
:1007700041808180C180018141818181C181704737
|
||||
:1007800081877047002202881D4B98420ED01D4B76
|
||||
:1007900098420BD0B0F1804F08D01B4B984205D047
|
||||
:1007A0001A4B984202D01A4B984204D14FF68F73DD
|
||||
:1007B0001A404B881A43174B984207D0164B984261
|
||||
:1007C00004D04FF6FF431A40CB881A4302808B882F
|
||||
:1007D00083850B8803850A4B98420BD0094B9842BE
|
||||
:1007E00008D00E4B984205D00D4B984202D00D4BCD
|
||||
:1007F000984201D10B7A038601238382704700005F
|
||||
:10080000002C01400034014000040040000800407A
|
||||
:10081000000C004000100040001400400040014067
|
||||
:10082000004401400048014010B540F226610C48E8
|
||||
:1008300000F08FF820B140F22661094800F012F86C
|
||||
:1008400040F22551064800F084F840B140F22551AD
|
||||
:10085000034800F007F8024800F012F9C4B210BDD6
|
||||
:100860000038014010B50022002340F66A14A1426E
|
||||
:1008700000D100BF0A1201249440A3B2DC430480DB
|
||||
:1008800010BD21B1828942F40052828104E0828944
|
||||
:100890004DF6FF731A4082817047000010B5044680
|
||||
:1008A0002048844209D101218803FFF733FD00214C
|
||||
:1008B0004FF48040FFF72EFD32E01B48844209D1FF
|
||||
:1008C00001214804FFF706FD00214FF40030FFF737
|
||||
:1008D00001FD25E01548844209D101218804FFF774
|
||||
:1008E000F9FC00214FF48020FFF7F4FC18E01048D9
|
||||
:1008F000844209D10121C804FFF7ECFC00214FF428
|
||||
:100900000020FFF7E7FC0BE00A48844208D10121F0
|
||||
:100910000805FFF7DFFC00214FF48010FFF7DAFC39
|
||||
:1009200010BD000000380140004400400048004075
|
||||
:10093000004C00400050004002460020B1F5007F0E
|
||||
:1009400000D100BF13880B400BB1012000E0002054
|
||||
:10095000704770B50246002400230025002040F6B1
|
||||
:100960006A16B14200D100BFC1F3421501F01F0366
|
||||
:10097000012606FA03F3012D02D19689334006E0E1
|
||||
:10098000022D02D1168A334001E0968A33400C12C0
|
||||
:10099000012606FA04F41688344013B10CB1012084
|
||||
:1009A00000E0002070BD00002DE9F04786B005464C
|
||||
:1009B0000E460024A24600BFA1460027B08900B120
|
||||
:1009C00000BF2F462C8A4CF6FF700440F088044389
|
||||
:1009D0002C82AC894EF6F3100440B088318908436C
|
||||
:1009E000718908430443AC81AC8A4FF6FF40044050
|
||||
:1009F000B0890443AC8201A8FFF79CFC1F488742E2
|
||||
:100A000002D1DDF810A001E0DDF80CA0A88900F407
|
||||
:100A1000004040B10AEBCA0000EB0A1031684900FF
|
||||
:100A2000B0FBF1F807E00AEBCA0000EB0A103168EE
|
||||
:100A30008900B0FBF1F86420B8FBF0F00401200954
|
||||
:100A4000642101FB1089A88900F4004040B13220E4
|
||||
:100A500000EBC900B0FBF1F000F00700044308E030
|
||||
:100A6000322000EB09106421B0FBF1F000F00F0020
|
||||
:100A700004432C8106B0BDE8F08700000038014037
|
||||
:100A800001468888C0F308007047C1F308028280DD
|
||||
:100A9000704700000FB4054B10B503A9044A029833
|
||||
:100AA00000F01AF810BC5DF814FB00003D130008BC
|
||||
:100AB0002800002002E008C8121F08C1002AFAD14D
|
||||
:100AC00070477047002001E001C1121F002AFBD1CE
|
||||
:100AD000704780F3108870472DE9F84F9946924689
|
||||
:100AE00088460546002706E025280AD051464A4692
|
||||
:100AF00090476D1C7F1C28780028F5D13846BDE84A
|
||||
:100B0000F88F002315F8011F18462E2915D115F866
|
||||
:100B1000011F04232A290DD06FF02F022978A1F19B
|
||||
:100B20003004092C09D800EB800002EB4000084497
|
||||
:100B30006D1CF3E758F8040B6D1C2A78002ADDD0F1
|
||||
:100B4000632A07D0732A0FD0104651464A46904771
|
||||
:100B50007F1C2AE018F8042B8DF8002000218DF866
|
||||
:100B600001106E46012103E058F8046B4FF0FF318D
|
||||
:100B70005A074FF0000401D409E0641C84420BDAE8
|
||||
:100B80008C42FADB325D002AF7D105E0641C8C420E
|
||||
:100B9000FCDB305D0028F9D1274404E016F8010B96
|
||||
:100BA00051464A469047641EF8D26D1CA3E710B523
|
||||
:100BB00000F0FAF810BD000010B52248007820B10E
|
||||
:100BC000012808D002283AD11EE001201E490870F1
|
||||
:100BD0001C49087034E01C480078002805DD00201E
|
||||
:100BE00019490870FA2000F0C3FC00F0BCFC002892
|
||||
:100BF00006DD02201349087001201349087002E045
|
||||
:100C00001249886880471BE00F480078002805DDFE
|
||||
:100C100000200D490870FA2000F0AAFC00F0A3FCA7
|
||||
:100C2000002808DD0120074908700749087008A05E
|
||||
:100C3000FFF730FF02E00549C868804700E000BFC9
|
||||
:100C400000BF10BD0100002005000020540000205E
|
||||
:100C50004661756C7421200A0000000010B523481D
|
||||
:100C6000007820B1012808D002283CD11FE00120E3
|
||||
:100C70001F4908701D49087036E01D48007800289B
|
||||
:100C800006DD00201A4908704FF4FA7000F070FC7D
|
||||
:100C900000F069FC002806DD0220144908700120DC
|
||||
:100CA0001349087002E01349886880471CE0104827
|
||||
:100CB0000078002806DD00200D4908704FF4FA7016
|
||||
:100CC00000F056FC00F04FFC002808DD0120074929
|
||||
:100CD00008700749087008A0FFF7DCFE02E005492C
|
||||
:100CE000C868804700E000BF00BF10BD01000020C1
|
||||
:100CF000030000205400002049646C6521200A0094
|
||||
:100D000010B52348007820B1012808D002283CD132
|
||||
:100D10001FE001201F4908701D49087036E01D487A
|
||||
:100D20000078002806DD00201A4908704FF47A7018
|
||||
:100D300000F01EFC00F017FC002806DD022014491C
|
||||
:100D4000087001201349087002E013498868804741
|
||||
:100D50001CE010480078002806DD00200D490870CE
|
||||
:100D60004FF47A7000F004FC00F0FDFB002808DD71
|
||||
:100D70000120074908700749087008A0FFF78AFE9C
|
||||
:100D800002E00549C868804700E000BF00BF10BD11
|
||||
:100D900001000020040000205400002052756E6EF7
|
||||
:100DA000696E6721200A000000B585B00021684601
|
||||
:100DB00000F036FB142269460248FFF7B5F905B08A
|
||||
:100DC00000BD00005400002010B50A48007820B192
|
||||
:100DD000012805D0022809D105E0FFF73FFF06E012
|
||||
:100DE000FFF78EFF03E0FFF7E7FE00E000BF00BF64
|
||||
:100DF00010BD00000000002010B500F003F8FFF760
|
||||
:100E0000E3FF10BD084800780849087008480078DA
|
||||
:100E10000978884206D00548007805490870002006
|
||||
:100E20000449087070470000020000200000002004
|
||||
:100E3000060000200100002010B51B48007807289C
|
||||
:100E40002CD2DFE800F004070D13191F250000F075
|
||||
:100E50006FFB26E0154890F9000000F041FB20E010
|
||||
:100E6000124890F9000000F045FB1AE00F4890F995
|
||||
:100E7000000000F065FB14E00C4890F9000000F061
|
||||
:100E800069FB0EE0094890F9000000F03DFB08E026
|
||||
:100E9000064890F9000000F042FB02E000F048FB39
|
||||
:100EA00000BF00BF10BD00000700002008000020A8
|
||||
:100EB00010B510210148FFF7E6F910BD0008014008
|
||||
:100EC00010B510210148FFF7E0F910BD00080140FE
|
||||
:100ED00010B520210148FFF7D6F910BD00080140E8
|
||||
:100EE00010B520210148FFF7D0F910BD00080140DE
|
||||
:100EF00010B540210148FFF7C6F910BD00080140B8
|
||||
:100F000010B540210148FFF7C0F910BD00080140AD
|
||||
:100F100010B580210148FFF7B6F910BD0008014067
|
||||
:100F200010B580210148FFF7B0F910BD000801405D
|
||||
:100F30000146042901DB0020704701EB4100084A0B
|
||||
:100F400002EB80004078012808D1002001EB41022B
|
||||
:100F5000034B03EB820250700120EDE70020EBE72A
|
||||
:100F60006800002008B501210420FFF7C3F9102014
|
||||
:100F70008DF80300ADF8000003208DF802006946EB
|
||||
:100F80001548FFF7F5F810208DF803002020ADF884
|
||||
:100F9000000003208DF8020069460F48FFF7E8F8CB
|
||||
:100FA00010208DF803004020ADF8000003208DF8DC
|
||||
:100FB000020069460848FFF7DBF810208DF80300AF
|
||||
:100FC0008020ADF8000003208DF802006946024839
|
||||
:100FD000FFF7CEF808BD00000008014010B5FFF78C
|
||||
:100FE000C1FF00F001F810BD00B589B0012108462D
|
||||
:100FF000FFF760F908A92448FFF7BAF80121042097
|
||||
:10100000FFF778F90420ADF8200018208DF82300B0
|
||||
:1010100003208DF8220008A91B48FFF7A9F84FF01C
|
||||
:101020008040FFF74CFB6320ADF818002320ADF89B
|
||||
:1010300014000020ADF81A00ADF816008DF81C0061
|
||||
:1010400005A94FF08040FFF79DFB01A8FFF78EFB3D
|
||||
:101050006020ADF804000020ADF80C000120ADF8D0
|
||||
:1010600006000020ADF80A0001A94FF08040FFF70C
|
||||
:101070002DFB01218807FFF7EDFA01218807FFF713
|
||||
:10108000F8FA09B000BD000000080140416851B104
|
||||
:101090004168491E416031B901214170017801293F
|
||||
:1010A00001D181684160704770B504460D46042C3B
|
||||
:1010B00006DB114A11A118A0FFF7ECFC00BFFEE708
|
||||
:1010C0000120FFF706FD04EB44001B4901EB800003
|
||||
:1010D000456004EB440001EB80008560002004EBD8
|
||||
:1010E0004401154A02EB8101487004EB440102F807
|
||||
:1010F0002100FFF7EEFC70BD7E1500082E2E5C432C
|
||||
:101100006F64655C6273705C7372635C6273705F62
|
||||
:1011100074696D65722E63004572726F723A206653
|
||||
:10112000696C652025732C2066756E6374696F6E1B
|
||||
:1011300020257328290D0A006800002001460020A0
|
||||
:1011400011B9044AD26804E0012902D1024A1268A6
|
||||
:1011500000207047001001400C0C014010B500F059
|
||||
:101160005DF800F0A9F8FFF739FF10BD08B50121BF
|
||||
:101170001020FFF7BFF8002000F02CF84FF40050CB
|
||||
:10118000ADF8000010208DF8030003208DF8020058
|
||||
:1011900069460248FEF7ECFF08BD00000010014060
|
||||
:1011A00008B501210820FFF7A5F8012000F012F88A
|
||||
:1011B0004FF40070ADF8000010208DF803000320FC
|
||||
:1011C0008DF8020069460248FEF7D2FF08BD000014
|
||||
:1011D000000C014020B94FF40051044A516104E071
|
||||
:1011E000012802D14102024A1160704700100140FB
|
||||
:1011F000140C014028B90749096941F40051054A16
|
||||
:101200001161012805D10449096841F40071024ABD
|
||||
:101210001160704700100140100C014070B50020B3
|
||||
:1012200016E0002100EB40021F4B03EB82025160ED
|
||||
:1012300000EB400203EB8202916000EB400203EB03
|
||||
:101240008202517000EB400203F82210411CC8B228
|
||||
:101250000428E6DB154909684FF47A73B1FBF3F211
|
||||
:10126000B2F1807F00D31DE022F07F41491E4FF094
|
||||
:10127000E023596159170F23002907DA1C07260EAE
|
||||
:101280000B4C01F00F052D1F665503E01C07250EC2
|
||||
:10129000084C655400BF00214FF0E02399610721FD
|
||||
:1012A000196100BF70BD0000680000202C00002004
|
||||
:1012B00018ED00E000E400E000B585B00121042055
|
||||
:1012C000FFF718F801214804FEF7F4FF1948FFF76B
|
||||
:1012D000E5FA0420ADF8100003208DF81200182064
|
||||
:1012E0008DF8130004A91448FEF742FF0820ADF85A
|
||||
:1012F000100004208DF8130004A90F48FEF738FFF2
|
||||
:101300004FF4E13000900020ADF80400ADF8060085
|
||||
:10131000ADF80800ADF80C000C20ADF80A006946E5
|
||||
:101320000448FFF741FB01210248FFF7AAFA05B084
|
||||
:1013300000BD0000004400400008014070B50446B4
|
||||
:101340000D4600BF40210548FFF7F6FA0028F9D006
|
||||
:10135000E1B20248FFF799FB204670BD004400400F
|
||||
:101360004FF4A060FEF794FFFFF7F8FE00F008F8D6
|
||||
:10137000FFF71DFC03E0FFF73FFDFFF75DFDFAE718
|
||||
:1013800010B500F075F810BD10B50446002C07DD4F
|
||||
:10139000FFF796FDFFF79CFDA0B2FEF783FF10E07C
|
||||
:1013A0003CB9FFF78DFDFFF79BFDA0B2FEF77AFF7A
|
||||
:1013B00007E0FFF77DFDFFF793FD614288B2FEF77E
|
||||
:1013C00071FF10BD10B50446002C07DDFFF798FD36
|
||||
:1013D000FFF79EFDA0B2FEF765FF10E03CB9FFF7F6
|
||||
:1013E0008FFDFFF79DFDA0B2FEF75CFF07E0FFF762
|
||||
:1013F0007FFDFFF795FD614288B2FEF753FF10BDF8
|
||||
:1014000010B500240020FFF799FE0446204610BDC9
|
||||
:1014100010B500240120FFF791FE0446204610BDC0
|
||||
:1014200070B505460C46022C01DB00BFFEE704EB5D
|
||||
:101430008400044A02EB800114222846FEF774FE61
|
||||
:1014400070BD00009800002010B50020FFF7C2FE1C
|
||||
:1014500010BD10B50020FFF7CDFE10BD10B5012066
|
||||
:10146000FFF7B8FE10BD10B50120FFF7C3FE10BD99
|
||||
:1014700010B5002011490870114848601148886073
|
||||
:101480001148C860114808610120087510490B48CF
|
||||
:1014900081611049C1611049016210494162002413
|
||||
:1014A00008E004EB8401054A02EB810148688047AB
|
||||
:1014B000601CC4B2022CF4DB10BD000098000020B8
|
||||
:1014C0006D110008531400084914000801140008A5
|
||||
:1014D000A1110008671400085D1400081114000829
|
||||
:1014E00010B504462046FFF74FFF604240B2FFF7B9
|
||||
:1014F00069FF10BD10B50446604240B2FFF744FFDB
|
||||
:101500002046FFF75FFF10BD10B50446604240B2B1
|
||||
:10151000FFF73AFF604240B2FFF754FF10BD10B52D
|
||||
:1015200004462046FFF730FF2046FFF74BFF10BD73
|
||||
:1015300010B50020FFF728FF0020FFF743FF10BD84
|
||||
:1015400010B504460020FFF71FFF604240B2FFF7CE
|
||||
:1015500039FF10BD10B504462046FFF715FF0020E7
|
||||
:10156000FFF730FF10BD10B50020FFF7E1FC10BD04
|
||||
:1015700010B5044621460020FFF796FD10BD6273AA
|
||||
:10158000705F537461727454696D65720062737038
|
||||
:101590005F53746172744175746F54696D65720044
|
||||
:1015A0006273705F53746F7054696D6572000000F0
|
||||
:1015B000D01500080000002054000000B40A000804
|
||||
:1015C00024160008540000206C040000C40A00081F
|
||||
:1015D00000000000000000003200000000000000D9
|
||||
:1015E00000000000000000000000000000000000FB
|
||||
:1015F00000000000000000000000000000A24A04FB
|
||||
:1016000000000000000000000102030406070809B2
|
||||
:101610000000000001020304010203040607080998
|
||||
:0416200002040608B2
|
||||
:1002A0000CED00E029B1064AD2690243044BDA6141
|
||||
:1002B00004E0034AD2698243014BDA6170470000CF
|
||||
:1002C0000010024029B1064A12690243044B1A6128
|
||||
:1002D00004E0034A12698243014B1A61704700002F
|
||||
:1002E0000010024029B1064A92690243044B9A6108
|
||||
:1002F00004E0034A92698243014B9A61704700000F
|
||||
:100300000010024029B1064AD2680243044BDA6069
|
||||
:1003100004E0034AD2688243014BDA607047000070
|
||||
:100320000010024030B500210022002400232D4D92
|
||||
:100330006D6805F00C0121B1042905D0082923D1ED
|
||||
:1003400005E0294D056022E0274D05601FE0254DA1
|
||||
:100350006D6805F47012234D6D6805F48034022534
|
||||
:1003600005EB92421CB9214D554305600BE01D4D34
|
||||
:100370006D6805F400351DB11C4D5543056002E064
|
||||
:10038000194D5543056002E0174D056000BF00BFE1
|
||||
:10039000144D6D6805F0F0010909154D6B5C056899
|
||||
:1003A000DD4045600F4D6D6805F4E061090A104DB0
|
||||
:1003B0006B5C4568DD4085600A4D6D6805F46051F1
|
||||
:1003C000C90A0B4D6B5C4568DD40C560054D6D6825
|
||||
:1003D00005F44041890B074D6B5CC568B5FBF3F52F
|
||||
:1003E000056130BD0010024000127A0000093D0096
|
||||
:1003F000400000205000002010B500F001F810BDB2
|
||||
:100400000CB50020019000903348006840F4803023
|
||||
:100410003149086000BF3048006800F400300090A7
|
||||
:100420000198401C0190009818B90198B0F5A06F90
|
||||
:10043000F1D12948006800F4003010B1012000908B
|
||||
:1004400001E0002000900098012843D12348006873
|
||||
:1004500040F01000214908600846006820F00700BD
|
||||
:1004600008600846006840F0020008601A484068CA
|
||||
:10047000194948600846406848600846406840F4AA
|
||||
:10048000806048600846406820F47C104860084658
|
||||
:10049000406840F4E81048600846006840F080700A
|
||||
:1004A000086000BF0C48006800F000700028F9D018
|
||||
:1004B0000948406820F00300074948600846406842
|
||||
:1004C00040F00200486000BF0348406800F00C00A4
|
||||
:1004D0000828F9D10CBD00000010024000200240A5
|
||||
:1004E00010B500F001F810BD10B50D48006840B11E
|
||||
:1004F0000B480068401E0A49086010B901200949EC
|
||||
:100500000870002408E004EB4401074A02EB810074
|
||||
:1005100000F0B6FD601CC4B2042CF4DB10BD00007A
|
||||
:100520000C000020100000206800002010B51348C7
|
||||
:10053000006840F001001149086008464068104911
|
||||
:1005400008400E494860084600680E4908400B49BB
|
||||
:1005500008600846006820F480200860084640686B
|
||||
:1005600020F4FE0048604FF41F008860FFF744FF4E
|
||||
:100570004FF000600449086010BD00000010024008
|
||||
:100580000000FFF8FFFFF6FE08ED00E070470000F6
|
||||
:1005900010B50121264800F070F818B10121244857
|
||||
:1005A00000F05CF80221224800F067F858B10221FF
|
||||
:1005B0001F4800F053F8002202211D4800F06EF899
|
||||
:1005C0001C48006880470421194800F056F858B1CB
|
||||
:1005D0000421174800F042F800220421144800F0DA
|
||||
:1005E0005DF81548006880470821114800F045F87B
|
||||
:1005F00058B108210E4800F031F8002208210C48BB
|
||||
:1006000000F04CF80D48006880471021084800F0C1
|
||||
:1006100034F858B11021064800F020F800221021CB
|
||||
:10062000034800F03BF806480068804710BD000012
|
||||
:1006300000040040180000201C00002020000020C2
|
||||
:100640002400002021B1028842F08002028004E0F0
|
||||
:1006500002884FF67F731A4002807047CA430282B5
|
||||
:10066000704721B1028842F00102028004E0028852
|
||||
:100670004FF6FE731A400280704730B502460020E4
|
||||
:1006800000230024158A05EA0103958905EA01047F
|
||||
:1006900013B10CB1012000E0002030BD1AB18389F4
|
||||
:1006A0000B43838102E083898B43838170470189F7
|
||||
:1006B0004FF6F872114001817047000070B50024B8
|
||||
:1006C00000220023058C4FF6EF7635400584028C1E
|
||||
:1006D0008388048B48F6FF752C404FF6FF452C406D
|
||||
:1006E0000D884FF6FF7606EA05252C434FF6DF7599
|
||||
:1006F0002A400D8906EA05152A434D8806EA0515A4
|
||||
:100700002A43154DA84202D0144DA8421DD14FF6E0
|
||||
:100710007F752A404D894FF6FF7606EA05152A4374
|
||||
:100720004FF6BF752A408D8806EA05152A434FF615
|
||||
:10073000FF352B404FF2FF752B408D8906EA85056A
|
||||
:100740002B43CD8906EA85052B4383800483CD881E
|
||||
:100750000587028470BD0000002C01400034014078
|
||||
:100760000021018041808180C1800181418181819E
|
||||
:10077000C181704701877047002202881D4B984253
|
||||
:100780000ED01D4B98420BD0B0F1804F08D01B4BC0
|
||||
:10079000984205D01A4B984202D01A4B984204D185
|
||||
:1007A0004FF68F731A404B881A43174B984207D065
|
||||
:1007B000164B984204D04FF6FF431A40CB881A4399
|
||||
:1007C00002808B8883850B8803850A4B98420BD067
|
||||
:1007D000094B984208D00E4B984205D00D4B9842D9
|
||||
:1007E00002D00D4B984201D10B7A038601238382FC
|
||||
:1007F00070470000002C014000340140000400401C
|
||||
:1008000000080040000C00400010004000140040B0
|
||||
:1008100000400140004401400048014010B540F252
|
||||
:1008200026610C4800F08FF820B140F2266109489B
|
||||
:1008300000F012F840F22551064800F084F840B16B
|
||||
:1008400040F22551034800F007F8024800F012F981
|
||||
:10085000C4B210BD0038014010B50022002340F69C
|
||||
:100860006A14A14200D100BF0A1201249440A3B22D
|
||||
:10087000DC43048010BD21B1828942F400528281A0
|
||||
:1008800004E082894DF6FF731A40828170470000B0
|
||||
:1008900010B504462048844209D101218803FFF79E
|
||||
:1008A00031FD00214FF48040FFF72CFD32E01B4862
|
||||
:1008B000844209D101214804FFF704FD00214FF4CF
|
||||
:1008C0000030FFF7FFFC25E01548844209D10121E3
|
||||
:1008D0008804FFF7F7FC00214FF48020FFF7F2FCBB
|
||||
:1008E00018E01048844209D10121C804FFF7EAFC4E
|
||||
:1008F00000214FF40020FFF7E5FC0BE00A4884429A
|
||||
:1009000008D101210805FFF7DDFC00214FF480101C
|
||||
:10091000FFF7D8FC10BD0000003801400044004043
|
||||
:1009200000480040004C00400050004002460020BB
|
||||
:10093000B1F5007F00D100BF13880B400BB101203F
|
||||
:1009400000E00020704770B5024600240023002517
|
||||
:10095000002040F66A16B14200D100BFC1F3421533
|
||||
:1009600001F01F03012606FA03F3012D02D1968937
|
||||
:10097000334006E0022D02D1168A334001E0968A08
|
||||
:1009800033400C12012606FA04F41688344013B1E1
|
||||
:100990000CB1012000E0002070BD00002DE9F047FF
|
||||
:1009A00086B005460E460024A24600BFA146002799
|
||||
:1009B000B08900B100BF2F462C8A4CF6FF7004406E
|
||||
:1009C000F08804432C82AC894EF6F3100440B088C2
|
||||
:1009D00031890843718908430443AC81AC8A4FF6DE
|
||||
:1009E000FF400440B0890443AC8201A8FFF79AFCA1
|
||||
:1009F0001F48874202D1DDF810A001E0DDF80CA00D
|
||||
:100A0000A88900F4004040B10AEBCA0000EB0A10CC
|
||||
:100A100031684900B0FBF1F807E00AEBCA0000EBCF
|
||||
:100A20000A1031688900B0FBF1F86420B8FBF0F0DF
|
||||
:100A300004012009642101FB1089A88900F4004009
|
||||
:100A400040B1322000EBC900B0FBF1F000F007002C
|
||||
:100A5000044308E0322000EB09106421B0FBF1F000
|
||||
:100A600000F00F0004432C8106B0BDE8F0870000C1
|
||||
:100A70000038014001468888C0F308007047C1F380
|
||||
:100A800008028280704700000FB4054B10B503A91F
|
||||
:100A9000044A029800F01AF810BC5DF814FB00003C
|
||||
:100AA000451300082800002002E008C8121F08C1F2
|
||||
:100AB000002AFAD170477047002001E001C1121FDF
|
||||
:100AC000002AFBD1704780F3108870472DE9F84F5A
|
||||
:100AD0009946924688460546002706E025280AD012
|
||||
:100AE00051464A4690476D1C7F1C28780028F5D156
|
||||
:100AF0003846BDE8F88F002315F8011F18462E2947
|
||||
:100B000015D115F8011F04232A290DD06FF02F02EB
|
||||
:100B10002978A1F13004092C09D800EB800002EB00
|
||||
:100B2000400008446D1CF3E758F8040B6D1C2A784C
|
||||
:100B3000002ADDD0632A07D0732A0FD01046514611
|
||||
:100B40004A4690477F1C2AE018F8042B8DF80020B5
|
||||
:100B500000218DF801106E46012103E058F8046B66
|
||||
:100B60004FF0FF315A074FF0000401D409E0641C34
|
||||
:100B700084420BDA8C42FADB325D002AF7D105E0C1
|
||||
:100B8000641C8C42FCDB305D0028F9D1274404E072
|
||||
:100B900016F8010B51464A469047641EF8D26D1C68
|
||||
:100BA000A3E710B500F0FAF810BD000010B5224818
|
||||
:100BB000007820B1012808D002283AD11EE0012097
|
||||
:100BC0001E4908701C49087034E01C480078002851
|
||||
:100BD00005DD002019490870FA2000F0CDFC00F076
|
||||
:100BE000C6FC002806DD02201349087001201349C5
|
||||
:100BF000087002E01249886880471BE00F480078BF
|
||||
:100C0000002805DD00200D490870FA2000F0B4FC32
|
||||
:100C100000F0ADFC002808DD0120074908700749F5
|
||||
:100C2000087008A0FFF730FF02E00549C868804758
|
||||
:100C300000E000BF00BF10BD010000200500002043
|
||||
:100C4000540000204661756C7421200A00000000E9
|
||||
:100C500010B52348007820B1012808D002283CD1E3
|
||||
:100C60001FE001201F4908701D49087036E01D482B
|
||||
:100C70000078002806DD00201A4908704FF4FA7049
|
||||
:100C800000F07AFC00F073FC002806DD0220144915
|
||||
:100C9000087001201349087002E0134988688047F2
|
||||
:100CA0001CE010480078002806DD00200D4908707F
|
||||
:100CB0004FF4FA7000F060FC00F059FC002808DDE9
|
||||
:100CC0000120074908700749087008A0FFF7DCFEFB
|
||||
:100CD00002E00549C868804700E000BF00BF10BDC2
|
||||
:100CE00001000020030000205400002049646C65CE
|
||||
:100CF00021200A0010B52348007820B1012808D02F
|
||||
:100D000002283CD11FE001201F4908701D490870CE
|
||||
:100D100036E01D480078002806DD00201A490870DA
|
||||
:100D20004FF47A7000F028FC00F021FC002806DD6A
|
||||
:100D300002201449087001201349087002E0134989
|
||||
:100D4000886880471CE010480078002806DD0020F5
|
||||
:100D50000D4908704FF47A7000F00EFC00F007FCAB
|
||||
:100D6000002808DD0120074908700749087008A01D
|
||||
:100D7000FFF78AFE02E00549C868804700E000BF2F
|
||||
:100D800000BF10BD0100002004000020540000201E
|
||||
:100D900052756E6E696E6721200A000000B585B03D
|
||||
:100DA0000021684600F040FB142269460248FFF724
|
||||
:100DB000BBF905B000BD00005400002010B50A4882
|
||||
:100DC000007820B1012805D0022809D105E0FFF7FD
|
||||
:100DD0003FFF06E0FFF78EFF03E0FFF7E7FE00E0CE
|
||||
:100DE00000BF00BF10BD00000000002010B500F0E3
|
||||
:100DF00003F8FFF7E3FF10BD0848007808490870C2
|
||||
:100E0000084800780978884206D0054800780549E6
|
||||
:100E1000087000200449087070470000020000209C
|
||||
:100E200000000020060000200100002010B51B4833
|
||||
:100E3000007807282CD2DFE800F004070D13191FF3
|
||||
:100E4000250000F079FB26E0154890F9000000F03D
|
||||
:100E50004BFB20E0124890F9000000F04FFB1AE035
|
||||
:100E60000F4890F9000000F06FFB14E00C4890F977
|
||||
:100E7000000000F073FB0EE0094890F9000000F05C
|
||||
:100E800047FB08E0064890F9000000F04CFB02E048
|
||||
:100E900000F052FB00BF00BF10BD000007000020A3
|
||||
:100EA0000800002010B510210148FFF7ECF910BD33
|
||||
:100EB0000008014010B510210148FFF7E6F910BD08
|
||||
:100EC0000008014010B520210148FFF7DCF910BDF2
|
||||
:100ED0000008014010B520210148FFF7D6F910BDE8
|
||||
:100EE0000008014010B540210148FFF7CCF910BDC2
|
||||
:100EF0000008014010B540210148FFF7C6F910BDB8
|
||||
:100F00000008014010B580210148FFF7BCF910BD71
|
||||
:100F10000008014010B580210148FFF7B6F910BD67
|
||||
:100F2000000801400146042901DB0020704701EB65
|
||||
:100F30004100084A02EB80004078012808D10020D7
|
||||
:100F400001EB4102034B03EB820250700120EDE7FD
|
||||
:100F50000020EBE76800002008B501210420FFF71E
|
||||
:100F6000C1F910208DF80300ADF8000003208DF8C2
|
||||
:100F7000020069461548FFF7FBF810208DF80300C2
|
||||
:100F80002020ADF8000003208DF8020069460F48CC
|
||||
:100F9000FFF7EEF810208DF803004020ADF80000B8
|
||||
:100FA00003208DF8020069460848FFF7E1F8102099
|
||||
:100FB0008DF803008020ADF8000003208DF80200BA
|
||||
:100FC00069460248FFF7D4F808BD00000008014058
|
||||
:100FD00010B5FFF7C1FF00F001F810BD00B589B0F2
|
||||
:100FE00001210846FFF75EF908A92448FFF7C0F879
|
||||
:100FF00001210420FFF776F90220ADF82000182027
|
||||
:101000008DF8230003208DF8220008A91B48FFF764
|
||||
:10101000AFF84FF08040FFF74AFB6320ADF81800AF
|
||||
:101020002320ADF814000020ADF81A00ADF816002A
|
||||
:101030008DF81C0005A94FF08040FFF79DFB01A82B
|
||||
:10104000FFF78EFB6020ADF804000020ADF80C0027
|
||||
:101050000120ADF806000020ADF80A0001A94FF00C
|
||||
:101060008040FFF72BFB01218807FFF7EBFA0121F6
|
||||
:101070008807FFF7F6FA09B000BD0000000801403C
|
||||
:10108000416851B14168491E416031B90121417047
|
||||
:101090000178012901D181684160704770B504462B
|
||||
:1010A0000D46042C06DB114A11A118A0FFF7ECFC39
|
||||
:1010B00000BFFEE70120FFF706FD04EB44001B49DB
|
||||
:1010C00001EB8000456004EB440001EB800085608B
|
||||
:1010D000002004EB4401154A02EB8101487004EB47
|
||||
:1010E000440102F82100FFF7EEFC70BD86150008F0
|
||||
:1010F0002E2E5C436F64655C6273705C7372635C1C
|
||||
:101100006273705F74696D65722E63004572726FF1
|
||||
:10111000723A2066696C652025732C2066756E63B3
|
||||
:1011200074696F6E20257328290D0A00680000205D
|
||||
:1011300010B5044621464FF08040FFF71BFB10BD61
|
||||
:101140000146002011B9044AD26804E0012902D105
|
||||
:10115000024A126800207047001001400C0C014048
|
||||
:1011600010B500F05DF800F0A9F8FFF731FF10BDF1
|
||||
:1011700008B501211020FFF7B5F8002000F02CF889
|
||||
:101180004FF40050ADF8000010208DF8030003204C
|
||||
:101190008DF8020069460248FEF7EAFF08BD00002C
|
||||
:1011A0000010014008B501210820FFF79BF801203D
|
||||
:1011B00000F012F84FF40070ADF8000010208DF828
|
||||
:1011C000030003208DF8020069460248FEF7D0FFB5
|
||||
:1011D00008BD0000000C014020B94FF40051044A42
|
||||
:1011E000516104E0012802D14102024A11607047B6
|
||||
:1011F00000100140140C014028B90749096941F465
|
||||
:101200000051054A1161012805D10449096841F4DA
|
||||
:101210000071024A1160704700100140100C01403B
|
||||
:1012200070B5002016E0002100EB40021F4B03EBDD
|
||||
:101230008202516000EB400203EB8202916000EBFE
|
||||
:10124000400203EB8202517000EB400203F82210CF
|
||||
:10125000411CC8B20428E6DB154909684FF47A73CB
|
||||
:10126000B1FBF3F2B2F1807F00D31DE022F07F41A9
|
||||
:10127000491E4FF0E023596159170F23002907DA5F
|
||||
:101280001C07260E0B4C01F00F052D1F665503E0C1
|
||||
:101290001C07250E084C655400BF00214FF0E023C9
|
||||
:1012A00099610721196100BF70BD0000680000202E
|
||||
:1012B0002C00002018ED00E000E400E000B585B04F
|
||||
:1012C00001210820FFF70EF801218804FEF7EAFF4C
|
||||
:1012D0001A48FFF7DDFA4FF48060ADF810000320E4
|
||||
:1012E0008DF8120018208DF8130004A91448FEF799
|
||||
:1012F0003FFF4FF40060ADF8100004208DF813009C
|
||||
:1013000004A90F48FEF734FF4FF4E13000900020AD
|
||||
:10131000ADF80400ADF80600ADF80800ADF80C001B
|
||||
:101320000C20ADF80A0069460448FFF737FB01219D
|
||||
:101330000248FFF7A0FA05B000BD000000480040D9
|
||||
:10134000000C014070B504460D4600BF4021054821
|
||||
:10135000FFF7ECFA0028F9D0E1B20248FFF78FFB63
|
||||
:10136000204670BD004800404FF4A060FEF790FF9B
|
||||
:10137000FFF7F6FE00F008F8FFF713FC03E0FFF7B5
|
||||
:1013800035FDFFF753FDFAE710B500F075F810BD15
|
||||
:1013900010B50446002C07DDFFF78CFDFFF792FD2A
|
||||
:1013A000A0B2FFF7C5FE10E03CB9FFF783FDFFF7E1
|
||||
:1013B00091FDA0B2FFF7BCFE07E0FFF773FDFFF75A
|
||||
:1013C00089FD614288B2FFF7B3FE10BD10B5044637
|
||||
:1013D000002C07DDFFF78EFDFFF794FDA0B2FFF7AD
|
||||
:1013E000A7FE10E03CB9FFF785FDFFF793FDA0B223
|
||||
:1013F000FFF79EFE07E0FFF775FDFFF78BFD6142EB
|
||||
:1014000088B2FFF795FE10BD10B500240020FFF74D
|
||||
:1014100097FE0446204610BD10B500240120FFF7BA
|
||||
:101420008FFE0446204610BD70B505460C46022CC2
|
||||
:1014300001DB00BFFEE704EB8400044A02EB8001FD
|
||||
:1014400014222846FEF770FE70BD000098000020B0
|
||||
:1014500010B50020FFF7C0FE10BD10B50020FFF74B
|
||||
:10146000CBFE10BD10B50120FFF7B6FE10BD10B5C4
|
||||
:101470000120FFF7C1FE10BD10B500201149087012
|
||||
:1014800011484860114888601148C86011480861D7
|
||||
:101490000120087510490B4881611049C16110494C
|
||||
:1014A000016210494162002408E004EB8401054A0E
|
||||
:1014B00002EB810148688047601CC4B2022CF4DB57
|
||||
:1014C00010BD000098000020711100085B14000896
|
||||
:1014D0005114000809140008A51100086F14000831
|
||||
:1014E000651400081914000810B504462046FFF7DB
|
||||
:1014F0004FFF604240B2FFF769FF10BD10B50446D0
|
||||
:10150000604240B2FFF744FF2046FFF75FFF10BD87
|
||||
:1015100010B50446604240B2FFF73AFF604240B265
|
||||
:10152000FFF754FF10BD10B504462046FFF730FF0B
|
||||
:101530002046FFF74BFF10BD10B50020FFF728FF36
|
||||
:101540000020FFF743FF10BD10B504460020FFF751
|
||||
:101550001FFF604240B2FFF739FF10BD10B50446CF
|
||||
:101560002046FFF715FF0020FFF730FF10BD10B534
|
||||
:101570000020FFF7D7FC10BD10B50446214600201F
|
||||
:10158000FFF78CFD10BD6273705F53746172745409
|
||||
:10159000696D6572006273705F5374617274417536
|
||||
:1015A000746F54696D6572006273705F53746F700D
|
||||
:1015B00054696D6572000000D81500080000002015
|
||||
:1015C00054000000A80A00082C160008540000204F
|
||||
:1015D0006C040000B80A00080000000000000000D1
|
||||
:1015E00032000000000000000000000000000000C9
|
||||
:1015F00000000000000000000000000000000000EB
|
||||
:101600000000000000A24A040000000000000000EA
|
||||
:101610000102030406070809000000000102030498
|
||||
:0C16200001020304060708090204060882
|
||||
:04000005080000ED02
|
||||
:00000001FF
|
||||
|
@ -120,7 +120,6 @@ Section Cross References
|
||||
bsp_usart.o(i.bsp_usart_debug_init) refers to stm32f10x_usart.o(i.USART_Cmd) for USART_Cmd
|
||||
bsp_usart.o(i.fputc) refers to stm32f10x_usart.o(i.USART_GetFlagStatus) for USART_GetFlagStatus
|
||||
bsp_usart.o(i.fputc) refers to stm32f10x_usart.o(i.USART_SendData) for USART_SendData
|
||||
bsp_motor.o(i.PWM_SetCompare3) refers to stm32f10x_tim.o(i.TIM_SetCompare3) for TIM_SetCompare3
|
||||
bsp_motor.o(i.bsp_AIN1_OFF) refers to stm32f10x_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
|
||||
bsp_motor.o(i.bsp_AIN1_ON) refers to stm32f10x_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
|
||||
bsp_motor.o(i.bsp_AIN2_OFF) refers to stm32f10x_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
|
||||
@ -139,9 +138,10 @@ Section Cross References
|
||||
bsp_motor.o(i.bsp_InitMotorTimer) refers to stm32f10x_tim.o(i.TIM_InternalClockConfig) for TIM_InternalClockConfig
|
||||
bsp_motor.o(i.bsp_InitMotorTimer) refers to stm32f10x_tim.o(i.TIM_TimeBaseInit) for TIM_TimeBaseInit
|
||||
bsp_motor.o(i.bsp_InitMotorTimer) refers to stm32f10x_tim.o(i.TIM_OCStructInit) for TIM_OCStructInit
|
||||
bsp_motor.o(i.bsp_InitMotorTimer) refers to stm32f10x_tim.o(i.TIM_OC3Init) for TIM_OC3Init
|
||||
bsp_motor.o(i.bsp_InitMotorTimer) refers to stm32f10x_tim.o(i.TIM_OC2Init) for TIM_OC2Init
|
||||
bsp_motor.o(i.bsp_InitMotorTimer) refers to stm32f10x_tim.o(i.TIM_ARRPreloadConfig) for TIM_ARRPreloadConfig
|
||||
bsp_motor.o(i.bsp_InitMotorTimer) refers to stm32f10x_tim.o(i.TIM_Cmd) for TIM_Cmd
|
||||
bsp_motor.o(i.bsp_changeMotorSpeed) refers to stm32f10x_tim.o(i.TIM_SetCompare2) for TIM_SetCompare2
|
||||
system_stm32f10x.o(i.SetSysClock) refers to system_stm32f10x.o(i.SetSysClockTo72) for SetSysClockTo72
|
||||
system_stm32f10x.o(i.SystemCoreClockUpdate) refers to system_stm32f10x.o(.data) for SystemCoreClock
|
||||
system_stm32f10x.o(i.SystemInit) refers to system_stm32f10x.o(i.SetSysClock) for SetSysClock
|
||||
@ -238,12 +238,12 @@ Section Cross References
|
||||
mw_soft_timer.o(i.mw_soft_timer_user_systick_update) refers to mw_soft_timer.o(.data) for systick_ms
|
||||
mw_motor.o(i.mw_SetMotorSpeed_Left) refers to bsp_motor.o(i.bsp_AIN1_ON) for bsp_AIN1_ON
|
||||
mw_motor.o(i.mw_SetMotorSpeed_Left) refers to bsp_motor.o(i.bsp_AIN2_OFF) for bsp_AIN2_OFF
|
||||
mw_motor.o(i.mw_SetMotorSpeed_Left) refers to bsp_motor.o(i.PWM_SetCompare3) for PWM_SetCompare3
|
||||
mw_motor.o(i.mw_SetMotorSpeed_Left) refers to bsp_motor.o(i.bsp_changeMotorSpeed) for bsp_changeMotorSpeed
|
||||
mw_motor.o(i.mw_SetMotorSpeed_Left) refers to bsp_motor.o(i.bsp_AIN2_ON) for bsp_AIN2_ON
|
||||
mw_motor.o(i.mw_SetMotorSpeed_Left) refers to bsp_motor.o(i.bsp_AIN1_OFF) for bsp_AIN1_OFF
|
||||
mw_motor.o(i.mw_SetMotorSpeed_Right) refers to bsp_motor.o(i.bsp_BIN1_ON) for bsp_BIN1_ON
|
||||
mw_motor.o(i.mw_SetMotorSpeed_Right) refers to bsp_motor.o(i.bsp_BIN2_OFF) for bsp_BIN2_OFF
|
||||
mw_motor.o(i.mw_SetMotorSpeed_Right) refers to bsp_motor.o(i.PWM_SetCompare3) for PWM_SetCompare3
|
||||
mw_motor.o(i.mw_SetMotorSpeed_Right) refers to bsp_motor.o(i.bsp_changeMotorSpeed) for bsp_changeMotorSpeed
|
||||
mw_motor.o(i.mw_SetMotorSpeed_Right) refers to bsp_motor.o(i.bsp_BIN2_ON) for bsp_BIN2_ON
|
||||
mw_motor.o(i.mw_SetMotorSpeed_Right) refers to bsp_motor.o(i.bsp_BIN1_OFF) for bsp_BIN1_OFF
|
||||
mw_motor.o(i.mw_motor_goAhead) refers to mw_motor.o(i.mw_SetMotorSpeed_Left) for mw_SetMotorSpeed_Left
|
||||
@ -923,11 +923,11 @@ Removing Unused input sections from the image.
|
||||
Removing stm32f10x_tim.o(i.TIM_OC1PolarityConfig), (18 bytes).
|
||||
Removing stm32f10x_tim.o(i.TIM_OC1PreloadConfig), (18 bytes).
|
||||
Removing stm32f10x_tim.o(i.TIM_OC2FastConfig), (26 bytes).
|
||||
Removing stm32f10x_tim.o(i.TIM_OC2Init), (164 bytes).
|
||||
Removing stm32f10x_tim.o(i.TIM_OC2NPolarityConfig), (26 bytes).
|
||||
Removing stm32f10x_tim.o(i.TIM_OC2PolarityConfig), (26 bytes).
|
||||
Removing stm32f10x_tim.o(i.TIM_OC2PreloadConfig), (26 bytes).
|
||||
Removing stm32f10x_tim.o(i.TIM_OC3FastConfig), (18 bytes).
|
||||
Removing stm32f10x_tim.o(i.TIM_OC3Init), (160 bytes).
|
||||
Removing stm32f10x_tim.o(i.TIM_OC3NPolarityConfig), (26 bytes).
|
||||
Removing stm32f10x_tim.o(i.TIM_OC3PolarityConfig), (26 bytes).
|
||||
Removing stm32f10x_tim.o(i.TIM_OC3PreloadConfig), (18 bytes).
|
||||
@ -949,7 +949,7 @@ Removing Unused input sections from the image.
|
||||
Removing stm32f10x_tim.o(i.TIM_SetAutoreload), (4 bytes).
|
||||
Removing stm32f10x_tim.o(i.TIM_SetClockDivision), (18 bytes).
|
||||
Removing stm32f10x_tim.o(i.TIM_SetCompare1), (4 bytes).
|
||||
Removing stm32f10x_tim.o(i.TIM_SetCompare2), (4 bytes).
|
||||
Removing stm32f10x_tim.o(i.TIM_SetCompare3), (4 bytes).
|
||||
Removing stm32f10x_tim.o(i.TIM_SetCompare4), (6 bytes).
|
||||
Removing stm32f10x_tim.o(i.TIM_SetCounter), (4 bytes).
|
||||
Removing stm32f10x_tim.o(i.TIM_SetIC1Prescaler), (18 bytes).
|
||||
@ -999,7 +999,7 @@ Removing Unused input sections from the image.
|
||||
Removing cdrcmple.o(.text), (48 bytes).
|
||||
Removing depilogue.o(.text), (186 bytes).
|
||||
|
||||
469 unused section(s) (total 20396 bytes) removed from the image.
|
||||
469 unused section(s) (total 20392 bytes) removed from the image.
|
||||
|
||||
==============================================================================
|
||||
|
||||
@ -1112,112 +1112,112 @@ Image Symbol Table
|
||||
i.GPIO_ResetBits 0x08000286 Section 0 stm32f10x_gpio.o(i.GPIO_ResetBits)
|
||||
i.GPIO_SetBits 0x0800028a Section 0 stm32f10x_gpio.o(i.GPIO_SetBits)
|
||||
i.NVIC_PriorityGroupConfig 0x08000290 Section 0 misc.o(i.NVIC_PriorityGroupConfig)
|
||||
i.PWM_SetCompare3 0x080002a4 Section 0 bsp_motor.o(i.PWM_SetCompare3)
|
||||
i.RCC_APB1PeriphClockCmd 0x080002b4 Section 0 stm32f10x_rcc.o(i.RCC_APB1PeriphClockCmd)
|
||||
i.RCC_APB1PeriphResetCmd 0x080002d4 Section 0 stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd)
|
||||
i.RCC_APB2PeriphClockCmd 0x080002f4 Section 0 stm32f10x_rcc.o(i.RCC_APB2PeriphClockCmd)
|
||||
i.RCC_APB2PeriphResetCmd 0x08000314 Section 0 stm32f10x_rcc.o(i.RCC_APB2PeriphResetCmd)
|
||||
i.RCC_GetClocksFreq 0x08000334 Section 0 stm32f10x_rcc.o(i.RCC_GetClocksFreq)
|
||||
i.SetSysClock 0x08000408 Section 0 system_stm32f10x.o(i.SetSysClock)
|
||||
SetSysClock 0x08000409 Thumb Code 8 system_stm32f10x.o(i.SetSysClock)
|
||||
i.SetSysClockTo72 0x08000410 Section 0 system_stm32f10x.o(i.SetSysClockTo72)
|
||||
SetSysClockTo72 0x08000411 Thumb Code 214 system_stm32f10x.o(i.SetSysClockTo72)
|
||||
i.SysTick_Handler 0x080004f0 Section 0 bsp_timer.o(i.SysTick_Handler)
|
||||
i.SysTick_ISR 0x080004f8 Section 0 bsp_timer.o(i.SysTick_ISR)
|
||||
i.SystemInit 0x0800053c Section 0 system_stm32f10x.o(i.SystemInit)
|
||||
i.TIM2_IRQHandler 0x0800059c Section 0 bsp_timer.o(i.TIM2_IRQHandler)
|
||||
i.TIM3_IRQHandler 0x080005a0 Section 0 bsp_timer.o(i.TIM3_IRQHandler)
|
||||
i.TIM_ARRPreloadConfig 0x08000654 Section 0 stm32f10x_tim.o(i.TIM_ARRPreloadConfig)
|
||||
i.TIM_ClearITPendingBit 0x0800066c Section 0 stm32f10x_tim.o(i.TIM_ClearITPendingBit)
|
||||
i.TIM_Cmd 0x08000672 Section 0 stm32f10x_tim.o(i.TIM_Cmd)
|
||||
i.TIM_GetITStatus 0x0800068a Section 0 stm32f10x_tim.o(i.TIM_GetITStatus)
|
||||
i.TIM_ITConfig 0x080006ac Section 0 stm32f10x_tim.o(i.TIM_ITConfig)
|
||||
i.TIM_InternalClockConfig 0x080006be Section 0 stm32f10x_tim.o(i.TIM_InternalClockConfig)
|
||||
i.TIM_OC3Init 0x080006cc Section 0 stm32f10x_tim.o(i.TIM_OC3Init)
|
||||
i.TIM_OCStructInit 0x0800076c Section 0 stm32f10x_tim.o(i.TIM_OCStructInit)
|
||||
i.TIM_SetCompare3 0x08000780 Section 0 stm32f10x_tim.o(i.TIM_SetCompare3)
|
||||
i.TIM_TimeBaseInit 0x08000784 Section 0 stm32f10x_tim.o(i.TIM_TimeBaseInit)
|
||||
i.USART1_IRQHandler 0x08000828 Section 0 interrupt_handler.o(i.USART1_IRQHandler)
|
||||
i.USART_ClearITPendingBit 0x08000864 Section 0 stm32f10x_usart.o(i.USART_ClearITPendingBit)
|
||||
i.USART_Cmd 0x08000882 Section 0 stm32f10x_usart.o(i.USART_Cmd)
|
||||
i.USART_DeInit 0x0800089c Section 0 stm32f10x_usart.o(i.USART_DeInit)
|
||||
i.USART_GetFlagStatus 0x08000938 Section 0 stm32f10x_usart.o(i.USART_GetFlagStatus)
|
||||
i.USART_GetITStatus 0x08000952 Section 0 stm32f10x_usart.o(i.USART_GetITStatus)
|
||||
i.USART_Init 0x080009a8 Section 0 stm32f10x_usart.o(i.USART_Init)
|
||||
i.USART_ReceiveData 0x08000a80 Section 0 stm32f10x_usart.o(i.USART_ReceiveData)
|
||||
i.USART_SendData 0x08000a8a Section 0 stm32f10x_usart.o(i.USART_SendData)
|
||||
i.__0printf$2 0x08000a94 Section 0 printf2.o(i.__0printf$2)
|
||||
i.__scatterload_copy 0x08000ab4 Section 14 handlers.o(i.__scatterload_copy)
|
||||
i.__scatterload_null 0x08000ac2 Section 2 handlers.o(i.__scatterload_null)
|
||||
i.__scatterload_zeroinit 0x08000ac4 Section 14 handlers.o(i.__scatterload_zeroinit)
|
||||
i.__set_PRIMASK 0x08000ad2 Section 0 bsp_timer.o(i.__set_PRIMASK)
|
||||
__set_PRIMASK 0x08000ad3 Thumb Code 6 bsp_timer.o(i.__set_PRIMASK)
|
||||
i._printf_core 0x08000ad8 Section 0 printf2.o(i._printf_core)
|
||||
_printf_core 0x08000ad9 Thumb Code 214 printf2.o(i._printf_core)
|
||||
i.app_init 0x08000bae Section 0 main.o(i.app_init)
|
||||
i.app_led_indicator_faultMode 0x08000bb8 Section 0 app_led.o(i.app_led_indicator_faultMode)
|
||||
i.app_led_indicator_idleMode 0x08000c5c Section 0 app_led.o(i.app_led_indicator_idleMode)
|
||||
i.app_led_indicator_runningMode 0x08000d00 Section 0 app_led.o(i.app_led_indicator_runningMode)
|
||||
i.app_led_init 0x08000da8 Section 0 app_led.o(i.app_led_init)
|
||||
i.app_led_runMode_indicator_blink_process 0x08000dc8 Section 0 app_led.o(i.app_led_runMode_indicator_blink_process)
|
||||
i.app_led_runMode_indicator_mainProcess 0x08000df8 Section 0 app_led.o(i.app_led_runMode_indicator_mainProcess)
|
||||
i.app_led_runMode_indicator_stateManage 0x08000e04 Section 0 app_led.o(i.app_led_runMode_indicator_stateManage)
|
||||
i.app_motor_mainProcess 0x08000e38 Section 0 app_motor.o(i.app_motor_mainProcess)
|
||||
i.bsp_AIN1_OFF 0x08000eb0 Section 0 bsp_motor.o(i.bsp_AIN1_OFF)
|
||||
i.bsp_AIN1_ON 0x08000ec0 Section 0 bsp_motor.o(i.bsp_AIN1_ON)
|
||||
i.bsp_AIN2_OFF 0x08000ed0 Section 0 bsp_motor.o(i.bsp_AIN2_OFF)
|
||||
i.bsp_AIN2_ON 0x08000ee0 Section 0 bsp_motor.o(i.bsp_AIN2_ON)
|
||||
i.bsp_BIN1_OFF 0x08000ef0 Section 0 bsp_motor.o(i.bsp_BIN1_OFF)
|
||||
i.bsp_BIN1_ON 0x08000f00 Section 0 bsp_motor.o(i.bsp_BIN1_ON)
|
||||
i.bsp_BIN2_OFF 0x08000f10 Section 0 bsp_motor.o(i.bsp_BIN2_OFF)
|
||||
i.bsp_BIN2_ON 0x08000f20 Section 0 bsp_motor.o(i.bsp_BIN2_ON)
|
||||
i.bsp_CheckTimer 0x08000f30 Section 0 bsp_timer.o(i.bsp_CheckTimer)
|
||||
i.bsp_InitGPIO_MotorOut 0x08000f64 Section 0 bsp_motor.o(i.bsp_InitGPIO_MotorOut)
|
||||
i.bsp_InitMotor 0x08000fdc Section 0 bsp_motor.o(i.bsp_InitMotor)
|
||||
i.bsp_InitMotorTimer 0x08000fe8 Section 0 bsp_motor.o(i.bsp_InitMotorTimer)
|
||||
i.bsp_SoftTimerDec 0x0800108c Section 0 bsp_timer.o(i.bsp_SoftTimerDec)
|
||||
bsp_SoftTimerDec 0x0800108d Thumb Code 28 bsp_timer.o(i.bsp_SoftTimerDec)
|
||||
i.bsp_StartTimer 0x080010a8 Section 0 bsp_timer.o(i.bsp_StartTimer)
|
||||
i.bsp_get_led_ttlState 0x0800113c Section 0 bsp_led.o(i.bsp_get_led_ttlState)
|
||||
i.bsp_init 0x0800115c Section 0 main.o(i.bsp_init)
|
||||
i.bsp_led1_init 0x0800116c Section 0 bsp_led.o(i.bsp_led1_init)
|
||||
i.bsp_led2_init 0x080011a0 Section 0 bsp_led.o(i.bsp_led2_init)
|
||||
i.bsp_led_off 0x080011d4 Section 0 bsp_led.o(i.bsp_led_off)
|
||||
i.bsp_led_on 0x080011f4 Section 0 bsp_led.o(i.bsp_led_on)
|
||||
i.bsp_timer_init 0x0800121c Section 0 bsp_timer.o(i.bsp_timer_init)
|
||||
i.bsp_usart_debug_init 0x080012b8 Section 0 bsp_usart.o(i.bsp_usart_debug_init)
|
||||
i.fputc 0x0800133c Section 0 bsp_usart.o(i.fputc)
|
||||
i.main 0x08001360 Section 0 main.o(i.main)
|
||||
i.middleware_init 0x08001380 Section 0 main.o(i.middleware_init)
|
||||
i.mw_SetMotorSpeed_Left 0x08001388 Section 0 mw_motor.o(i.mw_SetMotorSpeed_Left)
|
||||
i.mw_SetMotorSpeed_Right 0x080013c4 Section 0 mw_motor.o(i.mw_SetMotorSpeed_Right)
|
||||
i.mw_get_led1_state 0x08001400 Section 0 mw_led.o(i.mw_get_led1_state)
|
||||
mw_get_led1_state 0x08001401 Thumb Code 16 mw_led.o(i.mw_get_led1_state)
|
||||
i.mw_get_led2_state 0x08001410 Section 0 mw_led.o(i.mw_get_led2_state)
|
||||
mw_get_led2_state 0x08001411 Thumb Code 16 mw_led.o(i.mw_get_led2_state)
|
||||
i.mw_get_led_obj 0x08001420 Section 0 mw_led.o(i.mw_get_led_obj)
|
||||
i.mw_led1_off 0x08001448 Section 0 mw_led.o(i.mw_led1_off)
|
||||
mw_led1_off 0x08001449 Thumb Code 10 mw_led.o(i.mw_led1_off)
|
||||
i.mw_led1_on 0x08001452 Section 0 mw_led.o(i.mw_led1_on)
|
||||
mw_led1_on 0x08001453 Thumb Code 10 mw_led.o(i.mw_led1_on)
|
||||
i.mw_led2_off 0x0800145c Section 0 mw_led.o(i.mw_led2_off)
|
||||
mw_led2_off 0x0800145d Thumb Code 10 mw_led.o(i.mw_led2_off)
|
||||
i.mw_led2_on 0x08001466 Section 0 mw_led.o(i.mw_led2_on)
|
||||
mw_led2_on 0x08001467 Thumb Code 10 mw_led.o(i.mw_led2_on)
|
||||
i.mw_led_drv_init 0x08001470 Section 0 mw_led.o(i.mw_led_drv_init)
|
||||
i.mw_motor_goAhead 0x080014e0 Section 0 mw_motor.o(i.mw_motor_goAhead)
|
||||
i.mw_motor_goBack 0x080014f4 Section 0 mw_motor.o(i.mw_motor_goBack)
|
||||
i.mw_motor_selfLeft 0x08001508 Section 0 mw_motor.o(i.mw_motor_selfLeft)
|
||||
i.mw_motor_selfRight 0x0800151e Section 0 mw_motor.o(i.mw_motor_selfRight)
|
||||
i.mw_motor_stop 0x08001530 Section 0 mw_motor.o(i.mw_motor_stop)
|
||||
i.mw_motor_turnLeft 0x08001540 Section 0 mw_motor.o(i.mw_motor_turnLeft)
|
||||
i.mw_motor_turnRight 0x08001554 Section 0 mw_motor.o(i.mw_motor_turnRight)
|
||||
i.mw_softTimer_get_led_indicator_timeUp_flag 0x08001566 Section 0 mw_soft_timer.o(i.mw_softTimer_get_led_indicator_timeUp_flag)
|
||||
i.mw_softTimer_led_indicator_config 0x08001570 Section 0 mw_soft_timer.o(i.mw_softTimer_led_indicator_config)
|
||||
.constdata 0x0800157e Section 48 bsp_timer.o(.constdata)
|
||||
__FUNCTION__ 0x0800157e Data 15 bsp_timer.o(.constdata)
|
||||
__FUNCTION__ 0x0800158d Data 19 bsp_timer.o(.constdata)
|
||||
__FUNCTION__ 0x080015a0 Data 14 bsp_timer.o(.constdata)
|
||||
i.RCC_APB1PeriphClockCmd 0x080002a4 Section 0 stm32f10x_rcc.o(i.RCC_APB1PeriphClockCmd)
|
||||
i.RCC_APB1PeriphResetCmd 0x080002c4 Section 0 stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd)
|
||||
i.RCC_APB2PeriphClockCmd 0x080002e4 Section 0 stm32f10x_rcc.o(i.RCC_APB2PeriphClockCmd)
|
||||
i.RCC_APB2PeriphResetCmd 0x08000304 Section 0 stm32f10x_rcc.o(i.RCC_APB2PeriphResetCmd)
|
||||
i.RCC_GetClocksFreq 0x08000324 Section 0 stm32f10x_rcc.o(i.RCC_GetClocksFreq)
|
||||
i.SetSysClock 0x080003f8 Section 0 system_stm32f10x.o(i.SetSysClock)
|
||||
SetSysClock 0x080003f9 Thumb Code 8 system_stm32f10x.o(i.SetSysClock)
|
||||
i.SetSysClockTo72 0x08000400 Section 0 system_stm32f10x.o(i.SetSysClockTo72)
|
||||
SetSysClockTo72 0x08000401 Thumb Code 214 system_stm32f10x.o(i.SetSysClockTo72)
|
||||
i.SysTick_Handler 0x080004e0 Section 0 bsp_timer.o(i.SysTick_Handler)
|
||||
i.SysTick_ISR 0x080004e8 Section 0 bsp_timer.o(i.SysTick_ISR)
|
||||
i.SystemInit 0x0800052c Section 0 system_stm32f10x.o(i.SystemInit)
|
||||
i.TIM2_IRQHandler 0x0800058c Section 0 bsp_timer.o(i.TIM2_IRQHandler)
|
||||
i.TIM3_IRQHandler 0x08000590 Section 0 bsp_timer.o(i.TIM3_IRQHandler)
|
||||
i.TIM_ARRPreloadConfig 0x08000644 Section 0 stm32f10x_tim.o(i.TIM_ARRPreloadConfig)
|
||||
i.TIM_ClearITPendingBit 0x0800065c Section 0 stm32f10x_tim.o(i.TIM_ClearITPendingBit)
|
||||
i.TIM_Cmd 0x08000662 Section 0 stm32f10x_tim.o(i.TIM_Cmd)
|
||||
i.TIM_GetITStatus 0x0800067a Section 0 stm32f10x_tim.o(i.TIM_GetITStatus)
|
||||
i.TIM_ITConfig 0x0800069c Section 0 stm32f10x_tim.o(i.TIM_ITConfig)
|
||||
i.TIM_InternalClockConfig 0x080006ae Section 0 stm32f10x_tim.o(i.TIM_InternalClockConfig)
|
||||
i.TIM_OC2Init 0x080006bc Section 0 stm32f10x_tim.o(i.TIM_OC2Init)
|
||||
i.TIM_OCStructInit 0x08000760 Section 0 stm32f10x_tim.o(i.TIM_OCStructInit)
|
||||
i.TIM_SetCompare2 0x08000774 Section 0 stm32f10x_tim.o(i.TIM_SetCompare2)
|
||||
i.TIM_TimeBaseInit 0x08000778 Section 0 stm32f10x_tim.o(i.TIM_TimeBaseInit)
|
||||
i.USART1_IRQHandler 0x0800081c Section 0 interrupt_handler.o(i.USART1_IRQHandler)
|
||||
i.USART_ClearITPendingBit 0x08000858 Section 0 stm32f10x_usart.o(i.USART_ClearITPendingBit)
|
||||
i.USART_Cmd 0x08000876 Section 0 stm32f10x_usart.o(i.USART_Cmd)
|
||||
i.USART_DeInit 0x08000890 Section 0 stm32f10x_usart.o(i.USART_DeInit)
|
||||
i.USART_GetFlagStatus 0x0800092c Section 0 stm32f10x_usart.o(i.USART_GetFlagStatus)
|
||||
i.USART_GetITStatus 0x08000946 Section 0 stm32f10x_usart.o(i.USART_GetITStatus)
|
||||
i.USART_Init 0x0800099c Section 0 stm32f10x_usart.o(i.USART_Init)
|
||||
i.USART_ReceiveData 0x08000a74 Section 0 stm32f10x_usart.o(i.USART_ReceiveData)
|
||||
i.USART_SendData 0x08000a7e Section 0 stm32f10x_usart.o(i.USART_SendData)
|
||||
i.__0printf$2 0x08000a88 Section 0 printf2.o(i.__0printf$2)
|
||||
i.__scatterload_copy 0x08000aa8 Section 14 handlers.o(i.__scatterload_copy)
|
||||
i.__scatterload_null 0x08000ab6 Section 2 handlers.o(i.__scatterload_null)
|
||||
i.__scatterload_zeroinit 0x08000ab8 Section 14 handlers.o(i.__scatterload_zeroinit)
|
||||
i.__set_PRIMASK 0x08000ac6 Section 0 bsp_timer.o(i.__set_PRIMASK)
|
||||
__set_PRIMASK 0x08000ac7 Thumb Code 6 bsp_timer.o(i.__set_PRIMASK)
|
||||
i._printf_core 0x08000acc Section 0 printf2.o(i._printf_core)
|
||||
_printf_core 0x08000acd Thumb Code 214 printf2.o(i._printf_core)
|
||||
i.app_init 0x08000ba2 Section 0 main.o(i.app_init)
|
||||
i.app_led_indicator_faultMode 0x08000bac Section 0 app_led.o(i.app_led_indicator_faultMode)
|
||||
i.app_led_indicator_idleMode 0x08000c50 Section 0 app_led.o(i.app_led_indicator_idleMode)
|
||||
i.app_led_indicator_runningMode 0x08000cf4 Section 0 app_led.o(i.app_led_indicator_runningMode)
|
||||
i.app_led_init 0x08000d9c Section 0 app_led.o(i.app_led_init)
|
||||
i.app_led_runMode_indicator_blink_process 0x08000dbc Section 0 app_led.o(i.app_led_runMode_indicator_blink_process)
|
||||
i.app_led_runMode_indicator_mainProcess 0x08000dec Section 0 app_led.o(i.app_led_runMode_indicator_mainProcess)
|
||||
i.app_led_runMode_indicator_stateManage 0x08000df8 Section 0 app_led.o(i.app_led_runMode_indicator_stateManage)
|
||||
i.app_motor_mainProcess 0x08000e2c Section 0 app_motor.o(i.app_motor_mainProcess)
|
||||
i.bsp_AIN1_OFF 0x08000ea4 Section 0 bsp_motor.o(i.bsp_AIN1_OFF)
|
||||
i.bsp_AIN1_ON 0x08000eb4 Section 0 bsp_motor.o(i.bsp_AIN1_ON)
|
||||
i.bsp_AIN2_OFF 0x08000ec4 Section 0 bsp_motor.o(i.bsp_AIN2_OFF)
|
||||
i.bsp_AIN2_ON 0x08000ed4 Section 0 bsp_motor.o(i.bsp_AIN2_ON)
|
||||
i.bsp_BIN1_OFF 0x08000ee4 Section 0 bsp_motor.o(i.bsp_BIN1_OFF)
|
||||
i.bsp_BIN1_ON 0x08000ef4 Section 0 bsp_motor.o(i.bsp_BIN1_ON)
|
||||
i.bsp_BIN2_OFF 0x08000f04 Section 0 bsp_motor.o(i.bsp_BIN2_OFF)
|
||||
i.bsp_BIN2_ON 0x08000f14 Section 0 bsp_motor.o(i.bsp_BIN2_ON)
|
||||
i.bsp_CheckTimer 0x08000f24 Section 0 bsp_timer.o(i.bsp_CheckTimer)
|
||||
i.bsp_InitGPIO_MotorOut 0x08000f58 Section 0 bsp_motor.o(i.bsp_InitGPIO_MotorOut)
|
||||
i.bsp_InitMotor 0x08000fd0 Section 0 bsp_motor.o(i.bsp_InitMotor)
|
||||
i.bsp_InitMotorTimer 0x08000fdc Section 0 bsp_motor.o(i.bsp_InitMotorTimer)
|
||||
i.bsp_SoftTimerDec 0x08001080 Section 0 bsp_timer.o(i.bsp_SoftTimerDec)
|
||||
bsp_SoftTimerDec 0x08001081 Thumb Code 28 bsp_timer.o(i.bsp_SoftTimerDec)
|
||||
i.bsp_StartTimer 0x0800109c Section 0 bsp_timer.o(i.bsp_StartTimer)
|
||||
i.bsp_changeMotorSpeed 0x08001130 Section 0 bsp_motor.o(i.bsp_changeMotorSpeed)
|
||||
i.bsp_get_led_ttlState 0x08001140 Section 0 bsp_led.o(i.bsp_get_led_ttlState)
|
||||
i.bsp_init 0x08001160 Section 0 main.o(i.bsp_init)
|
||||
i.bsp_led1_init 0x08001170 Section 0 bsp_led.o(i.bsp_led1_init)
|
||||
i.bsp_led2_init 0x080011a4 Section 0 bsp_led.o(i.bsp_led2_init)
|
||||
i.bsp_led_off 0x080011d8 Section 0 bsp_led.o(i.bsp_led_off)
|
||||
i.bsp_led_on 0x080011f8 Section 0 bsp_led.o(i.bsp_led_on)
|
||||
i.bsp_timer_init 0x08001220 Section 0 bsp_timer.o(i.bsp_timer_init)
|
||||
i.bsp_usart_debug_init 0x080012bc Section 0 bsp_usart.o(i.bsp_usart_debug_init)
|
||||
i.fputc 0x08001344 Section 0 bsp_usart.o(i.fputc)
|
||||
i.main 0x08001368 Section 0 main.o(i.main)
|
||||
i.middleware_init 0x08001388 Section 0 main.o(i.middleware_init)
|
||||
i.mw_SetMotorSpeed_Left 0x08001390 Section 0 mw_motor.o(i.mw_SetMotorSpeed_Left)
|
||||
i.mw_SetMotorSpeed_Right 0x080013cc Section 0 mw_motor.o(i.mw_SetMotorSpeed_Right)
|
||||
i.mw_get_led1_state 0x08001408 Section 0 mw_led.o(i.mw_get_led1_state)
|
||||
mw_get_led1_state 0x08001409 Thumb Code 16 mw_led.o(i.mw_get_led1_state)
|
||||
i.mw_get_led2_state 0x08001418 Section 0 mw_led.o(i.mw_get_led2_state)
|
||||
mw_get_led2_state 0x08001419 Thumb Code 16 mw_led.o(i.mw_get_led2_state)
|
||||
i.mw_get_led_obj 0x08001428 Section 0 mw_led.o(i.mw_get_led_obj)
|
||||
i.mw_led1_off 0x08001450 Section 0 mw_led.o(i.mw_led1_off)
|
||||
mw_led1_off 0x08001451 Thumb Code 10 mw_led.o(i.mw_led1_off)
|
||||
i.mw_led1_on 0x0800145a Section 0 mw_led.o(i.mw_led1_on)
|
||||
mw_led1_on 0x0800145b Thumb Code 10 mw_led.o(i.mw_led1_on)
|
||||
i.mw_led2_off 0x08001464 Section 0 mw_led.o(i.mw_led2_off)
|
||||
mw_led2_off 0x08001465 Thumb Code 10 mw_led.o(i.mw_led2_off)
|
||||
i.mw_led2_on 0x0800146e Section 0 mw_led.o(i.mw_led2_on)
|
||||
mw_led2_on 0x0800146f Thumb Code 10 mw_led.o(i.mw_led2_on)
|
||||
i.mw_led_drv_init 0x08001478 Section 0 mw_led.o(i.mw_led_drv_init)
|
||||
i.mw_motor_goAhead 0x080014e8 Section 0 mw_motor.o(i.mw_motor_goAhead)
|
||||
i.mw_motor_goBack 0x080014fc Section 0 mw_motor.o(i.mw_motor_goBack)
|
||||
i.mw_motor_selfLeft 0x08001510 Section 0 mw_motor.o(i.mw_motor_selfLeft)
|
||||
i.mw_motor_selfRight 0x08001526 Section 0 mw_motor.o(i.mw_motor_selfRight)
|
||||
i.mw_motor_stop 0x08001538 Section 0 mw_motor.o(i.mw_motor_stop)
|
||||
i.mw_motor_turnLeft 0x08001548 Section 0 mw_motor.o(i.mw_motor_turnLeft)
|
||||
i.mw_motor_turnRight 0x0800155c Section 0 mw_motor.o(i.mw_motor_turnRight)
|
||||
i.mw_softTimer_get_led_indicator_timeUp_flag 0x0800156e Section 0 mw_soft_timer.o(i.mw_softTimer_get_led_indicator_timeUp_flag)
|
||||
i.mw_softTimer_led_indicator_config 0x08001578 Section 0 mw_soft_timer.o(i.mw_softTimer_led_indicator_config)
|
||||
.constdata 0x08001586 Section 48 bsp_timer.o(.constdata)
|
||||
__FUNCTION__ 0x08001586 Data 15 bsp_timer.o(.constdata)
|
||||
__FUNCTION__ 0x08001595 Data 19 bsp_timer.o(.constdata)
|
||||
__FUNCTION__ 0x080015a8 Data 14 bsp_timer.o(.constdata)
|
||||
.data 0x20000000 Section 7 app_led.o(.data)
|
||||
led_indicator_mode 0x20000000 Data 1 app_led.o(.data)
|
||||
tmp_indicator_single_mode_state 0x20000001 Data 1 app_led.o(.data)
|
||||
@ -1378,90 +1378,90 @@ Image Symbol Table
|
||||
GPIO_ResetBits 0x08000287 Thumb Code 4 stm32f10x_gpio.o(i.GPIO_ResetBits)
|
||||
GPIO_SetBits 0x0800028b Thumb Code 4 stm32f10x_gpio.o(i.GPIO_SetBits)
|
||||
NVIC_PriorityGroupConfig 0x08000291 Thumb Code 10 misc.o(i.NVIC_PriorityGroupConfig)
|
||||
PWM_SetCompare3 0x080002a5 Thumb Code 16 bsp_motor.o(i.PWM_SetCompare3)
|
||||
RCC_APB1PeriphClockCmd 0x080002b5 Thumb Code 26 stm32f10x_rcc.o(i.RCC_APB1PeriphClockCmd)
|
||||
RCC_APB1PeriphResetCmd 0x080002d5 Thumb Code 26 stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd)
|
||||
RCC_APB2PeriphClockCmd 0x080002f5 Thumb Code 26 stm32f10x_rcc.o(i.RCC_APB2PeriphClockCmd)
|
||||
RCC_APB2PeriphResetCmd 0x08000315 Thumb Code 26 stm32f10x_rcc.o(i.RCC_APB2PeriphResetCmd)
|
||||
RCC_GetClocksFreq 0x08000335 Thumb Code 192 stm32f10x_rcc.o(i.RCC_GetClocksFreq)
|
||||
SysTick_Handler 0x080004f1 Thumb Code 8 bsp_timer.o(i.SysTick_Handler)
|
||||
SysTick_ISR 0x080004f9 Thumb Code 54 bsp_timer.o(i.SysTick_ISR)
|
||||
SystemInit 0x0800053d Thumb Code 78 system_stm32f10x.o(i.SystemInit)
|
||||
TIM2_IRQHandler 0x0800059d Thumb Code 2 bsp_timer.o(i.TIM2_IRQHandler)
|
||||
TIM3_IRQHandler 0x080005a1 Thumb Code 158 bsp_timer.o(i.TIM3_IRQHandler)
|
||||
TIM_ARRPreloadConfig 0x08000655 Thumb Code 24 stm32f10x_tim.o(i.TIM_ARRPreloadConfig)
|
||||
TIM_ClearITPendingBit 0x0800066d Thumb Code 6 stm32f10x_tim.o(i.TIM_ClearITPendingBit)
|
||||
TIM_Cmd 0x08000673 Thumb Code 24 stm32f10x_tim.o(i.TIM_Cmd)
|
||||
TIM_GetITStatus 0x0800068b Thumb Code 34 stm32f10x_tim.o(i.TIM_GetITStatus)
|
||||
TIM_ITConfig 0x080006ad Thumb Code 18 stm32f10x_tim.o(i.TIM_ITConfig)
|
||||
TIM_InternalClockConfig 0x080006bf Thumb Code 12 stm32f10x_tim.o(i.TIM_InternalClockConfig)
|
||||
TIM_OC3Init 0x080006cd Thumb Code 150 stm32f10x_tim.o(i.TIM_OC3Init)
|
||||
TIM_OCStructInit 0x0800076d Thumb Code 20 stm32f10x_tim.o(i.TIM_OCStructInit)
|
||||
TIM_SetCompare3 0x08000781 Thumb Code 4 stm32f10x_tim.o(i.TIM_SetCompare3)
|
||||
TIM_TimeBaseInit 0x08000785 Thumb Code 122 stm32f10x_tim.o(i.TIM_TimeBaseInit)
|
||||
USART1_IRQHandler 0x08000829 Thumb Code 56 interrupt_handler.o(i.USART1_IRQHandler)
|
||||
USART_ClearITPendingBit 0x08000865 Thumb Code 30 stm32f10x_usart.o(i.USART_ClearITPendingBit)
|
||||
USART_Cmd 0x08000883 Thumb Code 24 stm32f10x_usart.o(i.USART_Cmd)
|
||||
USART_DeInit 0x0800089d Thumb Code 134 stm32f10x_usart.o(i.USART_DeInit)
|
||||
USART_GetFlagStatus 0x08000939 Thumb Code 26 stm32f10x_usart.o(i.USART_GetFlagStatus)
|
||||
USART_GetITStatus 0x08000953 Thumb Code 84 stm32f10x_usart.o(i.USART_GetITStatus)
|
||||
USART_Init 0x080009a9 Thumb Code 210 stm32f10x_usart.o(i.USART_Init)
|
||||
USART_ReceiveData 0x08000a81 Thumb Code 10 stm32f10x_usart.o(i.USART_ReceiveData)
|
||||
USART_SendData 0x08000a8b Thumb Code 8 stm32f10x_usart.o(i.USART_SendData)
|
||||
__0printf$2 0x08000a95 Thumb Code 22 printf2.o(i.__0printf$2)
|
||||
__1printf$2 0x08000a95 Thumb Code 0 printf2.o(i.__0printf$2)
|
||||
__2printf 0x08000a95 Thumb Code 0 printf2.o(i.__0printf$2)
|
||||
__scatterload_copy 0x08000ab5 Thumb Code 14 handlers.o(i.__scatterload_copy)
|
||||
__scatterload_null 0x08000ac3 Thumb Code 2 handlers.o(i.__scatterload_null)
|
||||
__scatterload_zeroinit 0x08000ac5 Thumb Code 14 handlers.o(i.__scatterload_zeroinit)
|
||||
app_init 0x08000baf Thumb Code 8 main.o(i.app_init)
|
||||
app_led_indicator_faultMode 0x08000bb9 Thumb Code 140 app_led.o(i.app_led_indicator_faultMode)
|
||||
app_led_indicator_idleMode 0x08000c5d Thumb Code 144 app_led.o(i.app_led_indicator_idleMode)
|
||||
app_led_indicator_runningMode 0x08000d01 Thumb Code 144 app_led.o(i.app_led_indicator_runningMode)
|
||||
app_led_init 0x08000da9 Thumb Code 26 app_led.o(i.app_led_init)
|
||||
app_led_runMode_indicator_blink_process 0x08000dc9 Thumb Code 42 app_led.o(i.app_led_runMode_indicator_blink_process)
|
||||
app_led_runMode_indicator_mainProcess 0x08000df9 Thumb Code 12 app_led.o(i.app_led_runMode_indicator_mainProcess)
|
||||
app_led_runMode_indicator_stateManage 0x08000e05 Thumb Code 34 app_led.o(i.app_led_runMode_indicator_stateManage)
|
||||
app_motor_mainProcess 0x08000e39 Thumb Code 110 app_motor.o(i.app_motor_mainProcess)
|
||||
bsp_AIN1_OFF 0x08000eb1 Thumb Code 12 bsp_motor.o(i.bsp_AIN1_OFF)
|
||||
bsp_AIN1_ON 0x08000ec1 Thumb Code 12 bsp_motor.o(i.bsp_AIN1_ON)
|
||||
bsp_AIN2_OFF 0x08000ed1 Thumb Code 12 bsp_motor.o(i.bsp_AIN2_OFF)
|
||||
bsp_AIN2_ON 0x08000ee1 Thumb Code 12 bsp_motor.o(i.bsp_AIN2_ON)
|
||||
bsp_BIN1_OFF 0x08000ef1 Thumb Code 12 bsp_motor.o(i.bsp_BIN1_OFF)
|
||||
bsp_BIN1_ON 0x08000f01 Thumb Code 12 bsp_motor.o(i.bsp_BIN1_ON)
|
||||
bsp_BIN2_OFF 0x08000f11 Thumb Code 12 bsp_motor.o(i.bsp_BIN2_OFF)
|
||||
bsp_BIN2_ON 0x08000f21 Thumb Code 12 bsp_motor.o(i.bsp_BIN2_ON)
|
||||
bsp_CheckTimer 0x08000f31 Thumb Code 48 bsp_timer.o(i.bsp_CheckTimer)
|
||||
bsp_InitGPIO_MotorOut 0x08000f65 Thumb Code 114 bsp_motor.o(i.bsp_InitGPIO_MotorOut)
|
||||
bsp_InitMotor 0x08000fdd Thumb Code 12 bsp_motor.o(i.bsp_InitMotor)
|
||||
bsp_InitMotorTimer 0x08000fe9 Thumb Code 158 bsp_motor.o(i.bsp_InitMotorTimer)
|
||||
bsp_StartTimer 0x080010a9 Thumb Code 80 bsp_timer.o(i.bsp_StartTimer)
|
||||
bsp_get_led_ttlState 0x0800113d Thumb Code 24 bsp_led.o(i.bsp_get_led_ttlState)
|
||||
bsp_init 0x0800115d Thumb Code 16 main.o(i.bsp_init)
|
||||
bsp_led1_init 0x0800116d Thumb Code 46 bsp_led.o(i.bsp_led1_init)
|
||||
bsp_led2_init 0x080011a1 Thumb Code 46 bsp_led.o(i.bsp_led2_init)
|
||||
bsp_led_off 0x080011d5 Thumb Code 24 bsp_led.o(i.bsp_led_off)
|
||||
bsp_led_on 0x080011f5 Thumb Code 32 bsp_led.o(i.bsp_led_on)
|
||||
bsp_timer_init 0x0800121d Thumb Code 138 bsp_timer.o(i.bsp_timer_init)
|
||||
bsp_usart_debug_init 0x080012b9 Thumb Code 122 bsp_usart.o(i.bsp_usart_debug_init)
|
||||
fputc 0x0800133d Thumb Code 32 bsp_usart.o(i.fputc)
|
||||
main 0x08001361 Thumb Code 32 main.o(i.main)
|
||||
middleware_init 0x08001381 Thumb Code 8 main.o(i.middleware_init)
|
||||
mw_SetMotorSpeed_Left 0x08001389 Thumb Code 60 mw_motor.o(i.mw_SetMotorSpeed_Left)
|
||||
mw_SetMotorSpeed_Right 0x080013c5 Thumb Code 60 mw_motor.o(i.mw_SetMotorSpeed_Right)
|
||||
mw_get_led_obj 0x08001421 Thumb Code 34 mw_led.o(i.mw_get_led_obj)
|
||||
mw_led_drv_init 0x08001471 Thumb Code 74 mw_led.o(i.mw_led_drv_init)
|
||||
mw_motor_goAhead 0x080014e1 Thumb Code 20 mw_motor.o(i.mw_motor_goAhead)
|
||||
mw_motor_goBack 0x080014f5 Thumb Code 20 mw_motor.o(i.mw_motor_goBack)
|
||||
mw_motor_selfLeft 0x08001509 Thumb Code 22 mw_motor.o(i.mw_motor_selfLeft)
|
||||
mw_motor_selfRight 0x0800151f Thumb Code 18 mw_motor.o(i.mw_motor_selfRight)
|
||||
mw_motor_stop 0x08001531 Thumb Code 16 mw_motor.o(i.mw_motor_stop)
|
||||
mw_motor_turnLeft 0x08001541 Thumb Code 20 mw_motor.o(i.mw_motor_turnLeft)
|
||||
mw_motor_turnRight 0x08001555 Thumb Code 18 mw_motor.o(i.mw_motor_turnRight)
|
||||
mw_softTimer_get_led_indicator_timeUp_flag 0x08001567 Thumb Code 10 mw_soft_timer.o(i.mw_softTimer_get_led_indicator_timeUp_flag)
|
||||
mw_softTimer_led_indicator_config 0x08001571 Thumb Code 14 mw_soft_timer.o(i.mw_softTimer_led_indicator_config)
|
||||
Region$$Table$$Base 0x080015b0 Number 0 anon$$obj.o(Region$$Table)
|
||||
Region$$Table$$Limit 0x080015d0 Number 0 anon$$obj.o(Region$$Table)
|
||||
RCC_APB1PeriphClockCmd 0x080002a5 Thumb Code 26 stm32f10x_rcc.o(i.RCC_APB1PeriphClockCmd)
|
||||
RCC_APB1PeriphResetCmd 0x080002c5 Thumb Code 26 stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd)
|
||||
RCC_APB2PeriphClockCmd 0x080002e5 Thumb Code 26 stm32f10x_rcc.o(i.RCC_APB2PeriphClockCmd)
|
||||
RCC_APB2PeriphResetCmd 0x08000305 Thumb Code 26 stm32f10x_rcc.o(i.RCC_APB2PeriphResetCmd)
|
||||
RCC_GetClocksFreq 0x08000325 Thumb Code 192 stm32f10x_rcc.o(i.RCC_GetClocksFreq)
|
||||
SysTick_Handler 0x080004e1 Thumb Code 8 bsp_timer.o(i.SysTick_Handler)
|
||||
SysTick_ISR 0x080004e9 Thumb Code 54 bsp_timer.o(i.SysTick_ISR)
|
||||
SystemInit 0x0800052d Thumb Code 78 system_stm32f10x.o(i.SystemInit)
|
||||
TIM2_IRQHandler 0x0800058d Thumb Code 2 bsp_timer.o(i.TIM2_IRQHandler)
|
||||
TIM3_IRQHandler 0x08000591 Thumb Code 158 bsp_timer.o(i.TIM3_IRQHandler)
|
||||
TIM_ARRPreloadConfig 0x08000645 Thumb Code 24 stm32f10x_tim.o(i.TIM_ARRPreloadConfig)
|
||||
TIM_ClearITPendingBit 0x0800065d Thumb Code 6 stm32f10x_tim.o(i.TIM_ClearITPendingBit)
|
||||
TIM_Cmd 0x08000663 Thumb Code 24 stm32f10x_tim.o(i.TIM_Cmd)
|
||||
TIM_GetITStatus 0x0800067b Thumb Code 34 stm32f10x_tim.o(i.TIM_GetITStatus)
|
||||
TIM_ITConfig 0x0800069d Thumb Code 18 stm32f10x_tim.o(i.TIM_ITConfig)
|
||||
TIM_InternalClockConfig 0x080006af Thumb Code 12 stm32f10x_tim.o(i.TIM_InternalClockConfig)
|
||||
TIM_OC2Init 0x080006bd Thumb Code 154 stm32f10x_tim.o(i.TIM_OC2Init)
|
||||
TIM_OCStructInit 0x08000761 Thumb Code 20 stm32f10x_tim.o(i.TIM_OCStructInit)
|
||||
TIM_SetCompare2 0x08000775 Thumb Code 4 stm32f10x_tim.o(i.TIM_SetCompare2)
|
||||
TIM_TimeBaseInit 0x08000779 Thumb Code 122 stm32f10x_tim.o(i.TIM_TimeBaseInit)
|
||||
USART1_IRQHandler 0x0800081d Thumb Code 56 interrupt_handler.o(i.USART1_IRQHandler)
|
||||
USART_ClearITPendingBit 0x08000859 Thumb Code 30 stm32f10x_usart.o(i.USART_ClearITPendingBit)
|
||||
USART_Cmd 0x08000877 Thumb Code 24 stm32f10x_usart.o(i.USART_Cmd)
|
||||
USART_DeInit 0x08000891 Thumb Code 134 stm32f10x_usart.o(i.USART_DeInit)
|
||||
USART_GetFlagStatus 0x0800092d Thumb Code 26 stm32f10x_usart.o(i.USART_GetFlagStatus)
|
||||
USART_GetITStatus 0x08000947 Thumb Code 84 stm32f10x_usart.o(i.USART_GetITStatus)
|
||||
USART_Init 0x0800099d Thumb Code 210 stm32f10x_usart.o(i.USART_Init)
|
||||
USART_ReceiveData 0x08000a75 Thumb Code 10 stm32f10x_usart.o(i.USART_ReceiveData)
|
||||
USART_SendData 0x08000a7f Thumb Code 8 stm32f10x_usart.o(i.USART_SendData)
|
||||
__0printf$2 0x08000a89 Thumb Code 22 printf2.o(i.__0printf$2)
|
||||
__1printf$2 0x08000a89 Thumb Code 0 printf2.o(i.__0printf$2)
|
||||
__2printf 0x08000a89 Thumb Code 0 printf2.o(i.__0printf$2)
|
||||
__scatterload_copy 0x08000aa9 Thumb Code 14 handlers.o(i.__scatterload_copy)
|
||||
__scatterload_null 0x08000ab7 Thumb Code 2 handlers.o(i.__scatterload_null)
|
||||
__scatterload_zeroinit 0x08000ab9 Thumb Code 14 handlers.o(i.__scatterload_zeroinit)
|
||||
app_init 0x08000ba3 Thumb Code 8 main.o(i.app_init)
|
||||
app_led_indicator_faultMode 0x08000bad Thumb Code 140 app_led.o(i.app_led_indicator_faultMode)
|
||||
app_led_indicator_idleMode 0x08000c51 Thumb Code 144 app_led.o(i.app_led_indicator_idleMode)
|
||||
app_led_indicator_runningMode 0x08000cf5 Thumb Code 144 app_led.o(i.app_led_indicator_runningMode)
|
||||
app_led_init 0x08000d9d Thumb Code 26 app_led.o(i.app_led_init)
|
||||
app_led_runMode_indicator_blink_process 0x08000dbd Thumb Code 42 app_led.o(i.app_led_runMode_indicator_blink_process)
|
||||
app_led_runMode_indicator_mainProcess 0x08000ded Thumb Code 12 app_led.o(i.app_led_runMode_indicator_mainProcess)
|
||||
app_led_runMode_indicator_stateManage 0x08000df9 Thumb Code 34 app_led.o(i.app_led_runMode_indicator_stateManage)
|
||||
app_motor_mainProcess 0x08000e2d Thumb Code 110 app_motor.o(i.app_motor_mainProcess)
|
||||
bsp_AIN1_OFF 0x08000ea5 Thumb Code 12 bsp_motor.o(i.bsp_AIN1_OFF)
|
||||
bsp_AIN1_ON 0x08000eb5 Thumb Code 12 bsp_motor.o(i.bsp_AIN1_ON)
|
||||
bsp_AIN2_OFF 0x08000ec5 Thumb Code 12 bsp_motor.o(i.bsp_AIN2_OFF)
|
||||
bsp_AIN2_ON 0x08000ed5 Thumb Code 12 bsp_motor.o(i.bsp_AIN2_ON)
|
||||
bsp_BIN1_OFF 0x08000ee5 Thumb Code 12 bsp_motor.o(i.bsp_BIN1_OFF)
|
||||
bsp_BIN1_ON 0x08000ef5 Thumb Code 12 bsp_motor.o(i.bsp_BIN1_ON)
|
||||
bsp_BIN2_OFF 0x08000f05 Thumb Code 12 bsp_motor.o(i.bsp_BIN2_OFF)
|
||||
bsp_BIN2_ON 0x08000f15 Thumb Code 12 bsp_motor.o(i.bsp_BIN2_ON)
|
||||
bsp_CheckTimer 0x08000f25 Thumb Code 48 bsp_timer.o(i.bsp_CheckTimer)
|
||||
bsp_InitGPIO_MotorOut 0x08000f59 Thumb Code 114 bsp_motor.o(i.bsp_InitGPIO_MotorOut)
|
||||
bsp_InitMotor 0x08000fd1 Thumb Code 12 bsp_motor.o(i.bsp_InitMotor)
|
||||
bsp_InitMotorTimer 0x08000fdd Thumb Code 158 bsp_motor.o(i.bsp_InitMotorTimer)
|
||||
bsp_StartTimer 0x0800109d Thumb Code 80 bsp_timer.o(i.bsp_StartTimer)
|
||||
bsp_changeMotorSpeed 0x08001131 Thumb Code 16 bsp_motor.o(i.bsp_changeMotorSpeed)
|
||||
bsp_get_led_ttlState 0x08001141 Thumb Code 24 bsp_led.o(i.bsp_get_led_ttlState)
|
||||
bsp_init 0x08001161 Thumb Code 16 main.o(i.bsp_init)
|
||||
bsp_led1_init 0x08001171 Thumb Code 46 bsp_led.o(i.bsp_led1_init)
|
||||
bsp_led2_init 0x080011a5 Thumb Code 46 bsp_led.o(i.bsp_led2_init)
|
||||
bsp_led_off 0x080011d9 Thumb Code 24 bsp_led.o(i.bsp_led_off)
|
||||
bsp_led_on 0x080011f9 Thumb Code 32 bsp_led.o(i.bsp_led_on)
|
||||
bsp_timer_init 0x08001221 Thumb Code 138 bsp_timer.o(i.bsp_timer_init)
|
||||
bsp_usart_debug_init 0x080012bd Thumb Code 126 bsp_usart.o(i.bsp_usart_debug_init)
|
||||
fputc 0x08001345 Thumb Code 32 bsp_usart.o(i.fputc)
|
||||
main 0x08001369 Thumb Code 32 main.o(i.main)
|
||||
middleware_init 0x08001389 Thumb Code 8 main.o(i.middleware_init)
|
||||
mw_SetMotorSpeed_Left 0x08001391 Thumb Code 60 mw_motor.o(i.mw_SetMotorSpeed_Left)
|
||||
mw_SetMotorSpeed_Right 0x080013cd Thumb Code 60 mw_motor.o(i.mw_SetMotorSpeed_Right)
|
||||
mw_get_led_obj 0x08001429 Thumb Code 34 mw_led.o(i.mw_get_led_obj)
|
||||
mw_led_drv_init 0x08001479 Thumb Code 74 mw_led.o(i.mw_led_drv_init)
|
||||
mw_motor_goAhead 0x080014e9 Thumb Code 20 mw_motor.o(i.mw_motor_goAhead)
|
||||
mw_motor_goBack 0x080014fd Thumb Code 20 mw_motor.o(i.mw_motor_goBack)
|
||||
mw_motor_selfLeft 0x08001511 Thumb Code 22 mw_motor.o(i.mw_motor_selfLeft)
|
||||
mw_motor_selfRight 0x08001527 Thumb Code 18 mw_motor.o(i.mw_motor_selfRight)
|
||||
mw_motor_stop 0x08001539 Thumb Code 16 mw_motor.o(i.mw_motor_stop)
|
||||
mw_motor_turnLeft 0x08001549 Thumb Code 20 mw_motor.o(i.mw_motor_turnLeft)
|
||||
mw_motor_turnRight 0x0800155d Thumb Code 18 mw_motor.o(i.mw_motor_turnRight)
|
||||
mw_softTimer_get_led_indicator_timeUp_flag 0x0800156f Thumb Code 10 mw_soft_timer.o(i.mw_softTimer_get_led_indicator_timeUp_flag)
|
||||
mw_softTimer_led_indicator_config 0x08001579 Thumb Code 14 mw_soft_timer.o(i.mw_softTimer_led_indicator_config)
|
||||
Region$$Table$$Base 0x080015b8 Number 0 anon$$obj.o(Region$$Table)
|
||||
Region$$Table$$Limit 0x080015d8 Number 0 anon$$obj.o(Region$$Table)
|
||||
e_motor_state 0x20000007 Data 1 app_motor.o(.data)
|
||||
motor_speed 0x20000008 Data 1 app_motor.o(.data)
|
||||
g_iRunTime 0x20000014 Data 4 bsp_timer.o(.data)
|
||||
@ -1479,9 +1479,9 @@ Memory Map of the image
|
||||
|
||||
Image Entry point : 0x080000ed
|
||||
|
||||
Load Region LR_IROM1 (Base: 0x08000000, Size: 0x00001624, Max: 0x00010000, ABSOLUTE)
|
||||
Load Region LR_IROM1 (Base: 0x08000000, Size: 0x0000162c, Max: 0x00010000, ABSOLUTE)
|
||||
|
||||
Execution Region ER_IROM1 (Exec base: 0x08000000, Load base: 0x08000000, Size: 0x000015d0, Max: 0x00010000, ABSOLUTE)
|
||||
Execution Region ER_IROM1 (Exec base: 0x08000000, Load base: 0x08000000, Size: 0x000015d8, Max: 0x00010000, ABSOLUTE)
|
||||
|
||||
Exec Addr Load Addr Size Type Attr Idx E Section Name Object
|
||||
|
||||
@ -1504,119 +1504,119 @@ Memory Map of the image
|
||||
0x0800028a 0x0800028a 0x00000004 Code RO 1881 i.GPIO_SetBits stm32f10x_gpio.o
|
||||
0x0800028e 0x0800028e 0x00000002 PAD
|
||||
0x08000290 0x08000290 0x00000014 Code RO 699 i.NVIC_PriorityGroupConfig misc.o
|
||||
0x080002a4 0x080002a4 0x00000010 Code RO 568 i.PWM_SetCompare3 bsp_motor.o
|
||||
0x080002b4 0x080002b4 0x00000020 Code RO 2292 i.RCC_APB1PeriphClockCmd stm32f10x_rcc.o
|
||||
0x080002d4 0x080002d4 0x00000020 Code RO 2293 i.RCC_APB1PeriphResetCmd stm32f10x_rcc.o
|
||||
0x080002f4 0x080002f4 0x00000020 Code RO 2294 i.RCC_APB2PeriphClockCmd stm32f10x_rcc.o
|
||||
0x08000314 0x08000314 0x00000020 Code RO 2295 i.RCC_APB2PeriphResetCmd stm32f10x_rcc.o
|
||||
0x08000334 0x08000334 0x000000d4 Code RO 2302 i.RCC_GetClocksFreq stm32f10x_rcc.o
|
||||
0x08000408 0x08000408 0x00000008 Code RO 657 i.SetSysClock system_stm32f10x.o
|
||||
0x08000410 0x08000410 0x000000e0 Code RO 658 i.SetSysClockTo72 system_stm32f10x.o
|
||||
0x080004f0 0x080004f0 0x00000008 Code RO 273 i.SysTick_Handler bsp_timer.o
|
||||
0x080004f8 0x080004f8 0x00000044 Code RO 274 i.SysTick_ISR bsp_timer.o
|
||||
0x0800053c 0x0800053c 0x00000060 Code RO 660 i.SystemInit system_stm32f10x.o
|
||||
0x0800059c 0x0800059c 0x00000002 Code RO 275 i.TIM2_IRQHandler bsp_timer.o
|
||||
0x0800059e 0x0800059e 0x00000002 PAD
|
||||
0x080005a0 0x080005a0 0x000000b4 Code RO 276 i.TIM3_IRQHandler bsp_timer.o
|
||||
0x08000654 0x08000654 0x00000018 Code RO 2923 i.TIM_ARRPreloadConfig stm32f10x_tim.o
|
||||
0x0800066c 0x0800066c 0x00000006 Code RO 2930 i.TIM_ClearITPendingBit stm32f10x_tim.o
|
||||
0x08000672 0x08000672 0x00000018 Code RO 2935 i.TIM_Cmd stm32f10x_tim.o
|
||||
0x0800068a 0x0800068a 0x00000022 Code RO 2956 i.TIM_GetITStatus stm32f10x_tim.o
|
||||
0x080006ac 0x080006ac 0x00000012 Code RO 2960 i.TIM_ITConfig stm32f10x_tim.o
|
||||
0x080006be 0x080006be 0x0000000c Code RO 2962 i.TIM_InternalClockConfig stm32f10x_tim.o
|
||||
0x080006ca 0x080006ca 0x00000002 PAD
|
||||
0x080006cc 0x080006cc 0x000000a0 Code RO 2974 i.TIM_OC3Init stm32f10x_tim.o
|
||||
0x0800076c 0x0800076c 0x00000014 Code RO 2982 i.TIM_OCStructInit stm32f10x_tim.o
|
||||
0x08000780 0x08000780 0x00000004 Code RO 2998 i.TIM_SetCompare3 stm32f10x_tim.o
|
||||
0x08000784 0x08000784 0x000000a4 Code RO 3006 i.TIM_TimeBaseInit stm32f10x_tim.o
|
||||
0x08000828 0x08000828 0x0000003c Code RO 3707 i.USART1_IRQHandler interrupt_handler.o
|
||||
0x08000864 0x08000864 0x0000001e Code RO 3471 i.USART_ClearITPendingBit stm32f10x_usart.o
|
||||
0x08000882 0x08000882 0x00000018 Code RO 3474 i.USART_Cmd stm32f10x_usart.o
|
||||
0x0800089a 0x0800089a 0x00000002 PAD
|
||||
0x0800089c 0x0800089c 0x0000009c Code RO 3476 i.USART_DeInit stm32f10x_usart.o
|
||||
0x08000938 0x08000938 0x0000001a Code RO 3477 i.USART_GetFlagStatus stm32f10x_usart.o
|
||||
0x08000952 0x08000952 0x00000054 Code RO 3478 i.USART_GetITStatus stm32f10x_usart.o
|
||||
0x080009a6 0x080009a6 0x00000002 PAD
|
||||
0x080009a8 0x080009a8 0x000000d8 Code RO 3481 i.USART_Init stm32f10x_usart.o
|
||||
0x08000a80 0x08000a80 0x0000000a Code RO 3488 i.USART_ReceiveData stm32f10x_usart.o
|
||||
0x08000a8a 0x08000a8a 0x00000008 Code RO 3491 i.USART_SendData stm32f10x_usart.o
|
||||
0x08000a92 0x08000a92 0x00000002 PAD
|
||||
0x08000a94 0x08000a94 0x00000020 Code RO 3948 i.__0printf$2 mc_w.l(printf2.o)
|
||||
0x08000ab4 0x08000ab4 0x0000000e Code RO 4185 i.__scatterload_copy mc_w.l(handlers.o)
|
||||
0x08000ac2 0x08000ac2 0x00000002 Code RO 4186 i.__scatterload_null mc_w.l(handlers.o)
|
||||
0x08000ac4 0x08000ac4 0x0000000e Code RO 4187 i.__scatterload_zeroinit mc_w.l(handlers.o)
|
||||
0x08000ad2 0x08000ad2 0x00000006 Code RO 277 i.__set_PRIMASK bsp_timer.o
|
||||
0x08000ad8 0x08000ad8 0x000000d6 Code RO 3955 i._printf_core mc_w.l(printf2.o)
|
||||
0x08000bae 0x08000bae 0x00000008 Code RO 1 i.app_init main.o
|
||||
0x08000bb6 0x08000bb6 0x00000002 PAD
|
||||
0x08000bb8 0x08000bb8 0x000000a4 Code RO 143 i.app_led_indicator_faultMode app_led.o
|
||||
0x08000c5c 0x08000c5c 0x000000a4 Code RO 144 i.app_led_indicator_idleMode app_led.o
|
||||
0x08000d00 0x08000d00 0x000000a8 Code RO 145 i.app_led_indicator_runningMode app_led.o
|
||||
0x08000da8 0x08000da8 0x00000020 Code RO 146 i.app_led_init app_led.o
|
||||
0x08000dc8 0x08000dc8 0x00000030 Code RO 147 i.app_led_runMode_indicator_blink_process app_led.o
|
||||
0x08000df8 0x08000df8 0x0000000c Code RO 148 i.app_led_runMode_indicator_mainProcess app_led.o
|
||||
0x08000e04 0x08000e04 0x00000034 Code RO 149 i.app_led_runMode_indicator_stateManage app_led.o
|
||||
0x08000e38 0x08000e38 0x00000078 Code RO 204 i.app_motor_mainProcess app_motor.o
|
||||
0x08000eb0 0x08000eb0 0x00000010 Code RO 569 i.bsp_AIN1_OFF bsp_motor.o
|
||||
0x08000ec0 0x08000ec0 0x00000010 Code RO 570 i.bsp_AIN1_ON bsp_motor.o
|
||||
0x08000ed0 0x08000ed0 0x00000010 Code RO 571 i.bsp_AIN2_OFF bsp_motor.o
|
||||
0x08000ee0 0x08000ee0 0x00000010 Code RO 572 i.bsp_AIN2_ON bsp_motor.o
|
||||
0x08000ef0 0x08000ef0 0x00000010 Code RO 573 i.bsp_BIN1_OFF bsp_motor.o
|
||||
0x08000f00 0x08000f00 0x00000010 Code RO 574 i.bsp_BIN1_ON bsp_motor.o
|
||||
0x08000f10 0x08000f10 0x00000010 Code RO 575 i.bsp_BIN2_OFF bsp_motor.o
|
||||
0x08000f20 0x08000f20 0x00000010 Code RO 576 i.bsp_BIN2_ON bsp_motor.o
|
||||
0x08000f30 0x08000f30 0x00000034 Code RO 278 i.bsp_CheckTimer bsp_timer.o
|
||||
0x08000f64 0x08000f64 0x00000078 Code RO 577 i.bsp_InitGPIO_MotorOut bsp_motor.o
|
||||
0x08000fdc 0x08000fdc 0x0000000c Code RO 578 i.bsp_InitMotor bsp_motor.o
|
||||
0x08000fe8 0x08000fe8 0x000000a4 Code RO 579 i.bsp_InitMotorTimer bsp_motor.o
|
||||
0x0800108c 0x0800108c 0x0000001c Code RO 283 i.bsp_SoftTimerDec bsp_timer.o
|
||||
0x080010a8 0x080010a8 0x00000094 Code RO 286 i.bsp_StartTimer bsp_timer.o
|
||||
0x0800113c 0x0800113c 0x00000020 Code RO 222 i.bsp_get_led_ttlState bsp_led.o
|
||||
0x0800115c 0x0800115c 0x00000010 Code RO 2 i.bsp_init main.o
|
||||
0x0800116c 0x0800116c 0x00000034 Code RO 223 i.bsp_led1_init bsp_led.o
|
||||
0x080011a0 0x080011a0 0x00000034 Code RO 224 i.bsp_led2_init bsp_led.o
|
||||
0x080011d4 0x080011d4 0x00000020 Code RO 225 i.bsp_led_off bsp_led.o
|
||||
0x080011f4 0x080011f4 0x00000028 Code RO 226 i.bsp_led_on bsp_led.o
|
||||
0x0800121c 0x0800121c 0x0000009c Code RO 291 i.bsp_timer_init bsp_timer.o
|
||||
0x080012b8 0x080012b8 0x00000084 Code RO 479 i.bsp_usart_debug_init bsp_usart.o
|
||||
0x0800133c 0x0800133c 0x00000024 Code RO 480 i.fputc bsp_usart.o
|
||||
0x08001360 0x08001360 0x00000020 Code RO 3 i.main main.o
|
||||
0x08001380 0x08001380 0x00000008 Code RO 4 i.middleware_init main.o
|
||||
0x08001388 0x08001388 0x0000003c Code RO 3814 i.mw_SetMotorSpeed_Left mw_motor.o
|
||||
0x080013c4 0x080013c4 0x0000003c Code RO 3815 i.mw_SetMotorSpeed_Right mw_motor.o
|
||||
0x08001400 0x08001400 0x00000010 Code RO 3722 i.mw_get_led1_state mw_led.o
|
||||
0x08001410 0x08001410 0x00000010 Code RO 3723 i.mw_get_led2_state mw_led.o
|
||||
0x08001420 0x08001420 0x00000028 Code RO 3724 i.mw_get_led_obj mw_led.o
|
||||
0x08001448 0x08001448 0x0000000a Code RO 3725 i.mw_led1_off mw_led.o
|
||||
0x08001452 0x08001452 0x0000000a Code RO 3726 i.mw_led1_on mw_led.o
|
||||
0x0800145c 0x0800145c 0x0000000a Code RO 3727 i.mw_led2_off mw_led.o
|
||||
0x08001466 0x08001466 0x0000000a Code RO 3728 i.mw_led2_on mw_led.o
|
||||
0x08001470 0x08001470 0x00000070 Code RO 3729 i.mw_led_drv_init mw_led.o
|
||||
0x080014e0 0x080014e0 0x00000014 Code RO 3816 i.mw_motor_goAhead mw_motor.o
|
||||
0x080014f4 0x080014f4 0x00000014 Code RO 3817 i.mw_motor_goBack mw_motor.o
|
||||
0x08001508 0x08001508 0x00000016 Code RO 3818 i.mw_motor_selfLeft mw_motor.o
|
||||
0x0800151e 0x0800151e 0x00000012 Code RO 3819 i.mw_motor_selfRight mw_motor.o
|
||||
0x08001530 0x08001530 0x00000010 Code RO 3820 i.mw_motor_stop mw_motor.o
|
||||
0x08001540 0x08001540 0x00000014 Code RO 3821 i.mw_motor_turnLeft mw_motor.o
|
||||
0x08001554 0x08001554 0x00000012 Code RO 3822 i.mw_motor_turnRight mw_motor.o
|
||||
0x08001566 0x08001566 0x0000000a Code RO 3774 i.mw_softTimer_get_led_indicator_timeUp_flag mw_soft_timer.o
|
||||
0x08001570 0x08001570 0x0000000e Code RO 3775 i.mw_softTimer_led_indicator_config mw_soft_timer.o
|
||||
0x0800157e 0x0800157e 0x00000030 Data RO 293 .constdata bsp_timer.o
|
||||
0x080015ae 0x080015ae 0x00000002 PAD
|
||||
0x080015b0 0x080015b0 0x00000020 Data RO 4183 Region$$Table anon$$obj.o
|
||||
0x080002a4 0x080002a4 0x00000020 Code RO 2292 i.RCC_APB1PeriphClockCmd stm32f10x_rcc.o
|
||||
0x080002c4 0x080002c4 0x00000020 Code RO 2293 i.RCC_APB1PeriphResetCmd stm32f10x_rcc.o
|
||||
0x080002e4 0x080002e4 0x00000020 Code RO 2294 i.RCC_APB2PeriphClockCmd stm32f10x_rcc.o
|
||||
0x08000304 0x08000304 0x00000020 Code RO 2295 i.RCC_APB2PeriphResetCmd stm32f10x_rcc.o
|
||||
0x08000324 0x08000324 0x000000d4 Code RO 2302 i.RCC_GetClocksFreq stm32f10x_rcc.o
|
||||
0x080003f8 0x080003f8 0x00000008 Code RO 657 i.SetSysClock system_stm32f10x.o
|
||||
0x08000400 0x08000400 0x000000e0 Code RO 658 i.SetSysClockTo72 system_stm32f10x.o
|
||||
0x080004e0 0x080004e0 0x00000008 Code RO 273 i.SysTick_Handler bsp_timer.o
|
||||
0x080004e8 0x080004e8 0x00000044 Code RO 274 i.SysTick_ISR bsp_timer.o
|
||||
0x0800052c 0x0800052c 0x00000060 Code RO 660 i.SystemInit system_stm32f10x.o
|
||||
0x0800058c 0x0800058c 0x00000002 Code RO 275 i.TIM2_IRQHandler bsp_timer.o
|
||||
0x0800058e 0x0800058e 0x00000002 PAD
|
||||
0x08000590 0x08000590 0x000000b4 Code RO 276 i.TIM3_IRQHandler bsp_timer.o
|
||||
0x08000644 0x08000644 0x00000018 Code RO 2923 i.TIM_ARRPreloadConfig stm32f10x_tim.o
|
||||
0x0800065c 0x0800065c 0x00000006 Code RO 2930 i.TIM_ClearITPendingBit stm32f10x_tim.o
|
||||
0x08000662 0x08000662 0x00000018 Code RO 2935 i.TIM_Cmd stm32f10x_tim.o
|
||||
0x0800067a 0x0800067a 0x00000022 Code RO 2956 i.TIM_GetITStatus stm32f10x_tim.o
|
||||
0x0800069c 0x0800069c 0x00000012 Code RO 2960 i.TIM_ITConfig stm32f10x_tim.o
|
||||
0x080006ae 0x080006ae 0x0000000c Code RO 2962 i.TIM_InternalClockConfig stm32f10x_tim.o
|
||||
0x080006ba 0x080006ba 0x00000002 PAD
|
||||
0x080006bc 0x080006bc 0x000000a4 Code RO 2969 i.TIM_OC2Init stm32f10x_tim.o
|
||||
0x08000760 0x08000760 0x00000014 Code RO 2982 i.TIM_OCStructInit stm32f10x_tim.o
|
||||
0x08000774 0x08000774 0x00000004 Code RO 2997 i.TIM_SetCompare2 stm32f10x_tim.o
|
||||
0x08000778 0x08000778 0x000000a4 Code RO 3006 i.TIM_TimeBaseInit stm32f10x_tim.o
|
||||
0x0800081c 0x0800081c 0x0000003c Code RO 3707 i.USART1_IRQHandler interrupt_handler.o
|
||||
0x08000858 0x08000858 0x0000001e Code RO 3471 i.USART_ClearITPendingBit stm32f10x_usart.o
|
||||
0x08000876 0x08000876 0x00000018 Code RO 3474 i.USART_Cmd stm32f10x_usart.o
|
||||
0x0800088e 0x0800088e 0x00000002 PAD
|
||||
0x08000890 0x08000890 0x0000009c Code RO 3476 i.USART_DeInit stm32f10x_usart.o
|
||||
0x0800092c 0x0800092c 0x0000001a Code RO 3477 i.USART_GetFlagStatus stm32f10x_usart.o
|
||||
0x08000946 0x08000946 0x00000054 Code RO 3478 i.USART_GetITStatus stm32f10x_usart.o
|
||||
0x0800099a 0x0800099a 0x00000002 PAD
|
||||
0x0800099c 0x0800099c 0x000000d8 Code RO 3481 i.USART_Init stm32f10x_usart.o
|
||||
0x08000a74 0x08000a74 0x0000000a Code RO 3488 i.USART_ReceiveData stm32f10x_usart.o
|
||||
0x08000a7e 0x08000a7e 0x00000008 Code RO 3491 i.USART_SendData stm32f10x_usart.o
|
||||
0x08000a86 0x08000a86 0x00000002 PAD
|
||||
0x08000a88 0x08000a88 0x00000020 Code RO 3948 i.__0printf$2 mc_w.l(printf2.o)
|
||||
0x08000aa8 0x08000aa8 0x0000000e Code RO 4185 i.__scatterload_copy mc_w.l(handlers.o)
|
||||
0x08000ab6 0x08000ab6 0x00000002 Code RO 4186 i.__scatterload_null mc_w.l(handlers.o)
|
||||
0x08000ab8 0x08000ab8 0x0000000e Code RO 4187 i.__scatterload_zeroinit mc_w.l(handlers.o)
|
||||
0x08000ac6 0x08000ac6 0x00000006 Code RO 277 i.__set_PRIMASK bsp_timer.o
|
||||
0x08000acc 0x08000acc 0x000000d6 Code RO 3955 i._printf_core mc_w.l(printf2.o)
|
||||
0x08000ba2 0x08000ba2 0x00000008 Code RO 1 i.app_init main.o
|
||||
0x08000baa 0x08000baa 0x00000002 PAD
|
||||
0x08000bac 0x08000bac 0x000000a4 Code RO 143 i.app_led_indicator_faultMode app_led.o
|
||||
0x08000c50 0x08000c50 0x000000a4 Code RO 144 i.app_led_indicator_idleMode app_led.o
|
||||
0x08000cf4 0x08000cf4 0x000000a8 Code RO 145 i.app_led_indicator_runningMode app_led.o
|
||||
0x08000d9c 0x08000d9c 0x00000020 Code RO 146 i.app_led_init app_led.o
|
||||
0x08000dbc 0x08000dbc 0x00000030 Code RO 147 i.app_led_runMode_indicator_blink_process app_led.o
|
||||
0x08000dec 0x08000dec 0x0000000c Code RO 148 i.app_led_runMode_indicator_mainProcess app_led.o
|
||||
0x08000df8 0x08000df8 0x00000034 Code RO 149 i.app_led_runMode_indicator_stateManage app_led.o
|
||||
0x08000e2c 0x08000e2c 0x00000078 Code RO 204 i.app_motor_mainProcess app_motor.o
|
||||
0x08000ea4 0x08000ea4 0x00000010 Code RO 568 i.bsp_AIN1_OFF bsp_motor.o
|
||||
0x08000eb4 0x08000eb4 0x00000010 Code RO 569 i.bsp_AIN1_ON bsp_motor.o
|
||||
0x08000ec4 0x08000ec4 0x00000010 Code RO 570 i.bsp_AIN2_OFF bsp_motor.o
|
||||
0x08000ed4 0x08000ed4 0x00000010 Code RO 571 i.bsp_AIN2_ON bsp_motor.o
|
||||
0x08000ee4 0x08000ee4 0x00000010 Code RO 572 i.bsp_BIN1_OFF bsp_motor.o
|
||||
0x08000ef4 0x08000ef4 0x00000010 Code RO 573 i.bsp_BIN1_ON bsp_motor.o
|
||||
0x08000f04 0x08000f04 0x00000010 Code RO 574 i.bsp_BIN2_OFF bsp_motor.o
|
||||
0x08000f14 0x08000f14 0x00000010 Code RO 575 i.bsp_BIN2_ON bsp_motor.o
|
||||
0x08000f24 0x08000f24 0x00000034 Code RO 278 i.bsp_CheckTimer bsp_timer.o
|
||||
0x08000f58 0x08000f58 0x00000078 Code RO 576 i.bsp_InitGPIO_MotorOut bsp_motor.o
|
||||
0x08000fd0 0x08000fd0 0x0000000c Code RO 577 i.bsp_InitMotor bsp_motor.o
|
||||
0x08000fdc 0x08000fdc 0x000000a4 Code RO 578 i.bsp_InitMotorTimer bsp_motor.o
|
||||
0x08001080 0x08001080 0x0000001c Code RO 283 i.bsp_SoftTimerDec bsp_timer.o
|
||||
0x0800109c 0x0800109c 0x00000094 Code RO 286 i.bsp_StartTimer bsp_timer.o
|
||||
0x08001130 0x08001130 0x00000010 Code RO 579 i.bsp_changeMotorSpeed bsp_motor.o
|
||||
0x08001140 0x08001140 0x00000020 Code RO 222 i.bsp_get_led_ttlState bsp_led.o
|
||||
0x08001160 0x08001160 0x00000010 Code RO 2 i.bsp_init main.o
|
||||
0x08001170 0x08001170 0x00000034 Code RO 223 i.bsp_led1_init bsp_led.o
|
||||
0x080011a4 0x080011a4 0x00000034 Code RO 224 i.bsp_led2_init bsp_led.o
|
||||
0x080011d8 0x080011d8 0x00000020 Code RO 225 i.bsp_led_off bsp_led.o
|
||||
0x080011f8 0x080011f8 0x00000028 Code RO 226 i.bsp_led_on bsp_led.o
|
||||
0x08001220 0x08001220 0x0000009c Code RO 291 i.bsp_timer_init bsp_timer.o
|
||||
0x080012bc 0x080012bc 0x00000088 Code RO 479 i.bsp_usart_debug_init bsp_usart.o
|
||||
0x08001344 0x08001344 0x00000024 Code RO 480 i.fputc bsp_usart.o
|
||||
0x08001368 0x08001368 0x00000020 Code RO 3 i.main main.o
|
||||
0x08001388 0x08001388 0x00000008 Code RO 4 i.middleware_init main.o
|
||||
0x08001390 0x08001390 0x0000003c Code RO 3814 i.mw_SetMotorSpeed_Left mw_motor.o
|
||||
0x080013cc 0x080013cc 0x0000003c Code RO 3815 i.mw_SetMotorSpeed_Right mw_motor.o
|
||||
0x08001408 0x08001408 0x00000010 Code RO 3722 i.mw_get_led1_state mw_led.o
|
||||
0x08001418 0x08001418 0x00000010 Code RO 3723 i.mw_get_led2_state mw_led.o
|
||||
0x08001428 0x08001428 0x00000028 Code RO 3724 i.mw_get_led_obj mw_led.o
|
||||
0x08001450 0x08001450 0x0000000a Code RO 3725 i.mw_led1_off mw_led.o
|
||||
0x0800145a 0x0800145a 0x0000000a Code RO 3726 i.mw_led1_on mw_led.o
|
||||
0x08001464 0x08001464 0x0000000a Code RO 3727 i.mw_led2_off mw_led.o
|
||||
0x0800146e 0x0800146e 0x0000000a Code RO 3728 i.mw_led2_on mw_led.o
|
||||
0x08001478 0x08001478 0x00000070 Code RO 3729 i.mw_led_drv_init mw_led.o
|
||||
0x080014e8 0x080014e8 0x00000014 Code RO 3816 i.mw_motor_goAhead mw_motor.o
|
||||
0x080014fc 0x080014fc 0x00000014 Code RO 3817 i.mw_motor_goBack mw_motor.o
|
||||
0x08001510 0x08001510 0x00000016 Code RO 3818 i.mw_motor_selfLeft mw_motor.o
|
||||
0x08001526 0x08001526 0x00000012 Code RO 3819 i.mw_motor_selfRight mw_motor.o
|
||||
0x08001538 0x08001538 0x00000010 Code RO 3820 i.mw_motor_stop mw_motor.o
|
||||
0x08001548 0x08001548 0x00000014 Code RO 3821 i.mw_motor_turnLeft mw_motor.o
|
||||
0x0800155c 0x0800155c 0x00000012 Code RO 3822 i.mw_motor_turnRight mw_motor.o
|
||||
0x0800156e 0x0800156e 0x0000000a Code RO 3774 i.mw_softTimer_get_led_indicator_timeUp_flag mw_soft_timer.o
|
||||
0x08001578 0x08001578 0x0000000e Code RO 3775 i.mw_softTimer_led_indicator_config mw_soft_timer.o
|
||||
0x08001586 0x08001586 0x00000030 Data RO 293 .constdata bsp_timer.o
|
||||
0x080015b6 0x080015b6 0x00000002 PAD
|
||||
0x080015b8 0x080015b8 0x00000020 Data RO 4183 Region$$Table anon$$obj.o
|
||||
|
||||
|
||||
Execution Region RW_IRAM1 (Exec base: 0x20000000, Load base: 0x080015d0, Size: 0x000004c0, Max: 0x00005000, ABSOLUTE)
|
||||
Execution Region RW_IRAM1 (Exec base: 0x20000000, Load base: 0x080015d8, Size: 0x000004c0, Max: 0x00005000, ABSOLUTE)
|
||||
|
||||
Exec Addr Load Addr Size Type Attr Idx E Section Name Object
|
||||
|
||||
0x20000000 0x080015d0 0x00000007 Data RW 151 .data app_led.o
|
||||
0x20000007 0x080015d7 0x00000002 Data RW 205 .data app_motor.o
|
||||
0x20000009 0x080015d9 0x00000003 PAD
|
||||
0x2000000c 0x080015dc 0x0000001c Data RW 294 .data bsp_timer.o
|
||||
0x20000028 0x080015f8 0x00000004 Data RW 481 .data bsp_usart.o
|
||||
0x2000002c 0x080015fc 0x00000014 Data RW 661 .data system_stm32f10x.o
|
||||
0x20000040 0x08001610 0x00000014 Data RW 2322 .data stm32f10x_rcc.o
|
||||
0x20000000 0x080015d8 0x00000007 Data RW 151 .data app_led.o
|
||||
0x20000007 0x080015df 0x00000002 Data RW 205 .data app_motor.o
|
||||
0x20000009 0x080015e1 0x00000003 PAD
|
||||
0x2000000c 0x080015e4 0x0000001c Data RW 294 .data bsp_timer.o
|
||||
0x20000028 0x08001600 0x00000004 Data RW 481 .data bsp_usart.o
|
||||
0x2000002c 0x08001604 0x00000014 Data RW 661 .data system_stm32f10x.o
|
||||
0x20000040 0x08001618 0x00000014 Data RW 2322 .data stm32f10x_rcc.o
|
||||
0x20000054 - 0x00000014 Zero RW 150 .bss app_led.o
|
||||
0x20000068 - 0x00000030 Zero RW 292 .bss bsp_timer.o
|
||||
0x20000098 - 0x00000028 Zero RW 3730 .bss mw_led.o
|
||||
@ -1630,28 +1630,28 @@ Image component sizes
|
||||
|
||||
Code (inc. data) RO Data RW Data ZI Data Debug Object Name
|
||||
|
||||
640 98 0 7 20 4608 app_led.o
|
||||
120 18 0 2 0 1284 app_motor.o
|
||||
208 36 0 0 0 11054 bsp_led.o
|
||||
440 44 0 0 0 5567 bsp_motor.o
|
||||
648 126 48 28 48 52880 bsp_timer.o
|
||||
168 14 0 4 0 226709 bsp_usart.o
|
||||
640 98 0 7 20 4676 app_led.o
|
||||
120 18 0 2 0 1304 app_motor.o
|
||||
208 36 0 0 0 11098 bsp_led.o
|
||||
440 44 0 0 0 5648 bsp_motor.o
|
||||
648 126 48 28 48 53008 bsp_timer.o
|
||||
172 14 0 4 0 226769 bsp_usart.o
|
||||
0 0 0 0 0 32 core_cm3.o
|
||||
60 4 0 0 0 516 interrupt_handler.o
|
||||
64 0 0 0 0 219979 main.o
|
||||
20 10 0 0 0 615 misc.o
|
||||
224 44 0 0 40 4181 mw_led.o
|
||||
254 0 0 0 0 4640 mw_motor.o
|
||||
24 0 0 0 0 1117 mw_soft_timer.o
|
||||
36 8 236 0 1024 960 startup_stm32f10x_md.o
|
||||
286 0 0 0 0 3496 stm32f10x_gpio.o
|
||||
340 44 0 20 0 15332 stm32f10x_rcc.o
|
||||
466 52 0 0 0 28230 stm32f10x_tim.o
|
||||
554 28 0 0 0 13861 stm32f10x_usart.o
|
||||
328 28 0 20 0 2869 system_stm32f10x.o
|
||||
60 4 0 0 0 520 interrupt_handler.o
|
||||
64 0 0 0 0 220043 main.o
|
||||
20 10 0 0 0 623 misc.o
|
||||
224 44 0 0 40 4253 mw_led.o
|
||||
254 0 0 0 0 4696 mw_motor.o
|
||||
24 0 0 0 0 1133 mw_soft_timer.o
|
||||
36 8 236 0 1024 968 startup_stm32f10x_md.o
|
||||
286 0 0 0 0 3524 stm32f10x_gpio.o
|
||||
340 44 0 20 0 15396 stm32f10x_rcc.o
|
||||
470 52 0 0 0 28314 stm32f10x_tim.o
|
||||
554 28 0 0 0 13921 stm32f10x_usart.o
|
||||
328 28 0 20 0 2901 system_stm32f10x.o
|
||||
|
||||
----------------------------------------------------------------------
|
||||
4894 554 318 84 1132 597930 Object Totals
|
||||
4902 554 318 84 1132 598827 Object Totals
|
||||
0 0 32 0 0 0 (incl. Generated)
|
||||
14 0 2 3 0 0 (incl. Padding)
|
||||
|
||||
@ -1693,15 +1693,15 @@ Image component sizes
|
||||
|
||||
Code (inc. data) RO Data RW Data ZI Data Debug
|
||||
|
||||
5266 580 318 84 1132 593818 Grand Totals
|
||||
5266 580 318 84 1132 593818 ELF Image Totals
|
||||
5266 580 318 84 0 0 ROM Totals
|
||||
5274 580 318 84 1132 594715 Grand Totals
|
||||
5274 580 318 84 1132 594715 ELF Image Totals
|
||||
5274 580 318 84 0 0 ROM Totals
|
||||
|
||||
==============================================================================
|
||||
|
||||
Total RO Size (Code + RO Data) 5584 ( 5.45kB)
|
||||
Total RO Size (Code + RO Data) 5592 ( 5.46kB)
|
||||
Total RW Size (RW Data + ZI Data) 1216 ( 1.19kB)
|
||||
Total ROM Size (Code + RO Data + RW Data) 5668 ( 5.54kB)
|
||||
Total ROM Size (Code + RO Data + RW Data) 5676 ( 5.54kB)
|
||||
|
||||
==============================================================================
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user